diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-08-24 15:01:33 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-08-24 15:01:33 +0000 |
| commit | 5d206d5f3078b4776226436e6e11e838b708015b (patch) | |
| tree | 8a547199971ab5c89617eff95a59cfc06ec4ea52 /apps/plugins | |
| parent | cae4ae2c71ae10ff67d39a78a705136e740dc07e (diff) | |
| download | rockbox-5d206d5f3078b4776226436e6e11e838b708015b.zip rockbox-5d206d5f3078b4776226436e6e11e838b708015b.tar.gz rockbox-5d206d5f3078b4776226436e6e11e838b708015b.tar.bz2 rockbox-5d206d5f3078b4776226436e6e11e838b708015b.tar.xz | |
Fix yellows/reds. Red where caused by preprocessor condition mismatch.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27874 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/euroconverter.c | 1 | ||||
| -rw-r--r-- | apps/plugins/goban.c | 5 | ||||
| -rw-r--r-- | apps/plugins/nim.c | 5 |
3 files changed, 3 insertions, 8 deletions
diff --git a/apps/plugins/euroconverter.c b/apps/plugins/euroconverter.c index 24cebe6..08dc377 100644 --- a/apps/plugins/euroconverter.c +++ b/apps/plugins/euroconverter.c @@ -20,6 +20,7 @@ ****************************************************************************/ #include "plugin.h" #include "lib/configfile.h" +#include "lib/pluginlib_exit.h" #ifdef HAVE_LCD_CHARCELLS diff --git a/apps/plugins/goban.c b/apps/plugins/goban.c index 1a12120..5ad7b37 100644 --- a/apps/plugins/goban.c +++ b/apps/plugins/goban.c @@ -20,14 +20,9 @@ ****************************************************************************/ #include "plugin.h" -#if PLUGIN_BUFFER_SIZE < 0x10000 && (CONFIG_PLATFORM & PLATFORM_NATIVE) - #include "lib/overlay.h" - - enum plugin_status plugin_start(const void* parameter) { return run_overlay(parameter, PLUGIN_GAMES_DIR "/goban.ovl", "Goban"); } -#endif diff --git a/apps/plugins/nim.c b/apps/plugins/nim.c index 3301277..07e41ff 100644 --- a/apps/plugins/nim.c +++ b/apps/plugins/nim.c @@ -19,6 +19,7 @@ * ****************************************************************************/ #include "plugin.h" +#include "lib/pluginlib_exit.h" #ifdef HAVE_LCD_CHARCELLS @@ -122,10 +123,8 @@ static void display_first_line(int x) } /* Call when the program end */ -static void nim_exit(void *parameter) +static void nim_exit(void) { - (void)parameter; - /*Restore the old pattern*/ rb->lcd_unlock_pattern(h1); rb->lcd_unlock_pattern(h2); |