summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index f8f2161d12..fbf6d53fe0 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)
1875 rds_get_pi(), rds_get_ps()); 1875 rds_get_pi(), rds_get_ps());
1876 simplelist_addline(SIMPLELIST_ADD_LINE, "RT:%s", 1876 simplelist_addline(SIMPLELIST_ADD_LINE, "RT:%s",
1877 rds_get_rt()); 1877 rds_get_rt());
1878 simplelist_addline(SIMPLELIST_ADD_LINE, "CT:%d", rds_get_ct()); 1878 time_t seconds = rds_get_ct();
1879 struct tm* time = gmtime(&seconds);
1880 simplelist_addline(SIMPLELIST_ADD_LINE,
1881 "CT:%4d-%02d-%02d %02d:%02d",
1882 time->tm_year + 1900, time->tm_mon + 1, time->tm_mday,
1883 time->tm_hour, time->tm_min, time->tm_sec);
1879#endif 1884#endif
1880 return ACTION_REDRAW; 1885 return ACTION_REDRAW;
1881} 1886}