summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-08-09 03:35:53 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-08-09 03:35:53 +0000
commit729ff6f5030eef4c27ed66192969b806ca8ad47f (patch)
tree8057710df700cd78c03937b0678771dfc4f53098
parent4cded9c7b96957afe596f6647c52b7e9d07c3b1b (diff)
downloadrockbox-729ff6f5030eef4c27ed66192969b806ca8ad47f.tar.gz
rockbox-729ff6f5030eef4c27ed66192969b806ca8ad47f.zip
Rockboy: Cleanup red
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22215 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/rockboy/emu.c2
-rw-r--r--apps/plugins/rockboy/menu.c12
2 files changed, 8 insertions, 6 deletions
diff --git a/apps/plugins/rockboy/emu.c b/apps/plugins/rockboy/emu.c
index 1e171cbae2..08c4dabf89 100644
--- a/apps/plugins/rockboy/emu.c
+++ b/apps/plugins/rockboy/emu.c
@@ -41,7 +41,9 @@ void emu_run(void)
41#ifdef HAVE_ADJUSTABLE_CPU_FREQ 41#ifdef HAVE_ADJUSTABLE_CPU_FREQ
42 rb->cpu_boost(true); 42 rb->cpu_boost(true);
43#endif 43#endif
44#ifdef HAVE_LCD_COLOR
44 set_pal(); 45 set_pal();
46#endif
45 47
46 while(!shut) 48 while(!shut)
47 { 49 {
diff --git a/apps/plugins/rockboy/menu.c b/apps/plugins/rockboy/menu.c
index cc12e8e67a..0978da0b09 100644
--- a/apps/plugins/rockboy/menu.c
+++ b/apps/plugins/rockboy/menu.c
@@ -333,12 +333,6 @@ static void do_opt_menu(void)
333 { "On" , -1 }, 333 { "On" , -1 },
334 }; 334 };
335 335
336 static const struct opt_items rotate[] = {
337 { "No rotation", -1 },
338 { "Rotate Right" , -1 },
339 { "Rotate Left" , -1 },
340 };
341
342 static const struct opt_items frameskip[]= { 336 static const struct opt_items frameskip[]= {
343 { "0 Max", -1 }, 337 { "0 Max", -1 },
344 { "1 Max", -1 }, 338 { "1 Max", -1 },
@@ -350,6 +344,12 @@ static void do_opt_menu(void)
350 }; 344 };
351 345
352#ifdef HAVE_LCD_COLOR 346#ifdef HAVE_LCD_COLOR
347 static const struct opt_items rotate[] = {
348 { "No rotation", -1 },
349 { "Rotate Right" , -1 },
350 { "Rotate Left" , -1 },
351 };
352
353 static const struct opt_items scaling[]= { 353 static const struct opt_items scaling[]= {
354 { "Scaled", -1 }, 354 { "Scaled", -1 },
355 { "Scaled - Maintain Ratio", -1 }, 355 { "Scaled - Maintain Ratio", -1 },