From 6543b8629e205825c0eb9175feab5ac68f2582b4 Mon Sep 17 00:00:00 2001 From: Tomer Shalev Date: Wed, 24 Feb 2010 21:47:15 +0000 Subject: [PATCH] Viewer: Fix red cause by stupid lack of attention git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24897 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/viewer.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index c4197a383c..8dae52780e 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -1601,7 +1601,9 @@ enum plugin_status plugin_start(const void* file) button = rb->button_get_w_tmo(HZ/10); switch (button) { case VIEWER_MENU: +#ifdef VIEWER_MENU2 case VIEWER_MENU2: +#endif viewer_menu(); break; @@ -1614,9 +1616,11 @@ enum plugin_status plugin_start(const void* file) break; case VIEWER_PAGE_UP: - case VIEWER_PAGE_UP2: case VIEWER_PAGE_UP | BUTTON_REPEAT: +#ifdef VIEWER_PAGE_UP2 + case VIEWER_PAGE_UP2: case VIEWER_PAGE_UP2 | BUTTON_REPEAT: +#endif if (prefs.scroll_mode == PAGE) { /* Page up */ @@ -1634,9 +1638,11 @@ enum plugin_status plugin_start(const void* file) break; case VIEWER_PAGE_DOWN: - case VIEWER_PAGE_DOWN2: case VIEWER_PAGE_DOWN | BUTTON_REPEAT: +#ifdef VIEWER_PAGE_DOWN2 + case VIEWER_PAGE_DOWN2: case VIEWER_PAGE_DOWN2 | BUTTON_REPEAT: +#endif if (prefs.scroll_mode == PAGE) { /* Page down */ @@ -1723,7 +1729,9 @@ enum plugin_status plugin_start(const void* file) case VIEWER_RC_QUIT: #endif case VIEWER_QUIT: +#ifdef VIEWER_QUIT2 case VIEWER_QUIT2: +#endif viewer_exit(NULL); done = true; break;