diff options
| author | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-06-28 13:51:44 +0000 |
|---|---|---|
| committer | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-06-28 13:51:44 +0000 |
| commit | 3f95ea53b0404299eb4068667bb33804387fdda9 (patch) | |
| tree | f021879b2a9fd7582ce4d98d04f23a3439874797 /apps/gui/statusbar.h | |
| parent | 0350bf225234ca22460a758e9e7d007236256efc (diff) | |
| download | rockbox-3f95ea53b0404299eb4068667bb33804387fdda9.zip rockbox-3f95ea53b0404299eb4068667bb33804387fdda9.tar.gz rockbox-3f95ea53b0404299eb4068667bb33804387fdda9.tar.bz2 rockbox-3f95ea53b0404299eb4068667bb33804387fdda9.tar.xz | |
Make the time in the statusbar always display --:-- when the RTC isn't set
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13729 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/statusbar.h')
| -rw-r--r-- | apps/gui/statusbar.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h index 21f9833..2be765b 100644 --- a/apps/gui/statusbar.h +++ b/apps/gui/statusbar.h @@ -34,8 +34,7 @@ struct status_info { int playmode; int repeat; #if CONFIG_RTC - int hour; - int minute; + struct tm *time; #endif #if CONFIG_CHARGING |