diff options
| author | Karl Kurbjun <kkurbjun@gmail.com> | 2009-08-09 03:35:53 +0000 |
|---|---|---|
| committer | Karl Kurbjun <kkurbjun@gmail.com> | 2009-08-09 03:35:53 +0000 |
| commit | 729ff6f5030eef4c27ed66192969b806ca8ad47f (patch) | |
| tree | 8057710df700cd78c03937b0678771dfc4f53098 /apps/plugins | |
| parent | 4cded9c7b96957afe596f6647c52b7e9d07c3b1b (diff) | |
| download | rockbox-729ff6f5030eef4c27ed66192969b806ca8ad47f.zip rockbox-729ff6f5030eef4c27ed66192969b806ca8ad47f.tar.gz rockbox-729ff6f5030eef4c27ed66192969b806ca8ad47f.tar.bz2 rockbox-729ff6f5030eef4c27ed66192969b806ca8ad47f.tar.xz | |
Rockboy: Cleanup red
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22215 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/rockboy/emu.c | 2 | ||||
| -rw-r--r-- | apps/plugins/rockboy/menu.c | 12 |
2 files changed, 8 insertions, 6 deletions
diff --git a/apps/plugins/rockboy/emu.c b/apps/plugins/rockboy/emu.c index 1e171cb..08c4dab 100644 --- a/apps/plugins/rockboy/emu.c +++ b/apps/plugins/rockboy/emu.c @@ -41,7 +41,9 @@ void emu_run(void) #ifdef HAVE_ADJUSTABLE_CPU_FREQ rb->cpu_boost(true); #endif +#ifdef HAVE_LCD_COLOR set_pal(); +#endif while(!shut) { diff --git a/apps/plugins/rockboy/menu.c b/apps/plugins/rockboy/menu.c index cc12e8e..0978da0 100644 --- a/apps/plugins/rockboy/menu.c +++ b/apps/plugins/rockboy/menu.c @@ -333,12 +333,6 @@ static void do_opt_menu(void) { "On" , -1 }, }; - static const struct opt_items rotate[] = { - { "No rotation", -1 }, - { "Rotate Right" , -1 }, - { "Rotate Left" , -1 }, - }; - static const struct opt_items frameskip[]= { { "0 Max", -1 }, { "1 Max", -1 }, @@ -350,6 +344,12 @@ static void do_opt_menu(void) }; #ifdef HAVE_LCD_COLOR + static const struct opt_items rotate[] = { + { "No rotation", -1 }, + { "Rotate Right" , -1 }, + { "Rotate Left" , -1 }, + }; + static const struct opt_items scaling[]= { { "Scaled", -1 }, { "Scaled - Maintain Ratio", -1 }, |