diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2012-02-07 19:50:33 +0100 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2012-03-12 08:42:53 +0100 |
| commit | 01397c4ff156013c22f1348a7ff1659a4d50f9ae (patch) | |
| tree | 440d65cc998901815a7a79a2f32674e68905d5e7 /apps | |
| parent | f6370726323c5e3351d23341be9fc0a5af950a67 (diff) | |
| download | rockbox-01397c4ff156013c22f1348a7ff1659a4d50f9ae.zip rockbox-01397c4ff156013c22f1348a7ff1659a4d50f9ae.tar.gz rockbox-01397c4ff156013c22f1348a7ff1659a4d50f9ae.tar.bz2 rockbox-01397c4ff156013c22f1348a7ff1659a4d50f9ae.tar.xz | |
rds: show rds clock-time as broken down time instead of UTC time in debug menu
Change-Id: I931182ccd20cf8899f3ce9b6b8d7c7c5f4ea006f
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/debug_menu.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index f8f2161..fbf6d53 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1875,7 +1875,12 @@ static int radio_callback(int btn, struct gui_synclist *lists) rds_get_pi(), rds_get_ps()); simplelist_addline(SIMPLELIST_ADD_LINE, "RT:%s", rds_get_rt()); - simplelist_addline(SIMPLELIST_ADD_LINE, "CT:%d", rds_get_ct()); + time_t seconds = rds_get_ct(); + struct tm* time = gmtime(&seconds); + simplelist_addline(SIMPLELIST_ADD_LINE, + "CT:%4d-%02d-%02d %02d:%02d", + time->tm_year + 1900, time->tm_mon + 1, time->tm_mday, + time->tm_hour, time->tm_min, time->tm_sec); #endif return ACTION_REDRAW; } |