From 0c0978f6e47b5b0d8a1a9afbcf11b7412fa1b4f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= Date: Sat, 20 Sep 2003 22:59:28 +0000 Subject: [PATCH] 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 --- apps/plugins/othelo.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/plugins/othelo.c b/apps/plugins/othelo.c index 0ac7828367..386bf52753 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; /***************************************************************************/