summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-06-25 10:58:48 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-06-25 10:58:48 +0000
commit8a393885ea6780e8310862509184c132d4f523c4 (patch)
tree65b1adca9510cabeb56b390726e25c6fa2238e3f
parent46f38c5f4fb587fd922d629bd5077202e6106407 (diff)
downloadrockbox-8a393885ea6780e8310862509184c132d4f523c4.zip
rockbox-8a393885ea6780e8310862509184c132d4f523c4.tar.gz
rockbox-8a393885ea6780e8310862509184c132d4f523c4.tar.bz2
rockbox-8a393885ea6780e8310862509184c132d4f523c4.tar.xz
fix red
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17791 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/menus/main_menu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c
index b438b66..ecd4c62 100644
--- a/apps/menus/main_menu.c
+++ b/apps/menus/main_menu.c
@@ -389,7 +389,6 @@ static int info_speak_item(int selected_item, void * data)
static int info_action_callback(int action, struct gui_synclist *lists)
{
- static int last_redraw = 0;
if (action == ACTION_STD_CANCEL)
return action;
else if ((action == ACTION_STD_OK)
@@ -415,14 +414,17 @@ static int info_action_callback(int action, struct gui_synclist *lists)
#endif
return ACTION_REDRAW;
}
+#if CONFIG_RTC
else if (action == ACTION_NONE && lists->selected_item == INFO_TIME)
{
+ static int last_redraw = 0;
if (TIME_AFTER(current_tick, last_redraw + HZ/2))
{
last_redraw = current_tick;
return ACTION_REDRAW;
}
}
+#endif
return action;
}
static bool show_info(void)