summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2007-03-23 08:09:28 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2007-03-23 08:09:28 +0000
commitc3bef27cbd7bcfbec5105ae9c0a138a6b639c381 (patch)
treecc8b77b57a81b96c5e513c86b63d5988f3be29a0
parent6d87513aa2365a3b63fd71ecafb4f41363f256fe (diff)
downloadrockbox-c3bef27cbd7bcfbec5105ae9c0a138a6b639c381.tar.gz
rockbox-c3bef27cbd7bcfbec5105ae9c0a138a6b639c381.zip
Temporary workaround hard lockup with "nothing to resume" splash at end of the playlist if the last active screen was the main menu. A proper fix should come soon.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12896 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/root_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/root_menu.c b/apps/root_menu.c
index 94b138b402..12b2544d60 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -232,7 +232,7 @@ static int wpsscrn(void* param)
232 else 232 else
233 { 233 {
234 gui_syncsplash(HZ*2, str(LANG_NOTHING_TO_RESUME)); 234 gui_syncsplash(HZ*2, str(LANG_NOTHING_TO_RESUME));
235 if (last_screen == GO_TO_ROOT) 235 if (last_screen == GO_TO_WPS)
236 ret_val = GO_TO_ROOT; 236 ret_val = GO_TO_ROOT;
237 } 237 }
238#if LCD_DEPTH > 1 238#if LCD_DEPTH > 1