diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2003-09-20 22:59:28 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2003-09-20 22:59:28 +0000 |
| commit | 0c0978f6e47b5b0d8a1a9afbcf11b7412fa1b4f5 (patch) | |
| tree | e1021c5b9d45990d88e4d27aaa2c8ff6e244c065 /apps/plugins | |
| parent | 5c60917ff9fba1e2873d4dfd03663e2af1adfea2 (diff) | |
| download | rockbox-0c0978f6e47b5b0d8a1a9afbcf11b7412fa1b4f5.zip rockbox-0c0978f6e47b5b0d8a1a9afbcf11b7412fa1b4f5.tar.gz rockbox-0c0978f6e47b5b0d8a1a9afbcf11b7412fa1b4f5.tar.bz2 rockbox-0c0978f6e47b5b0d8a1a9afbcf11b7412fa1b4f5.tar.xz | |
Fixed bad #include / #ifdef order that always produced a 0-byte .rock
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3959 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/othelo.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/othelo.c b/apps/plugins/othelo.c index 0ac7828..386bf52 100644 --- a/apps/plugins/othelo.c +++ b/apps/plugins/othelo.c @@ -30,11 +30,10 @@ * # Reintroduce suspend feature under plugin system */ - -#ifdef HAVE_LCD_BITMAP - /* Plugin header */ #include "plugin.h" + +#ifdef HAVE_LCD_BITMAP static struct plugin_api* rb; /***************************************************************************/ |