From 5ad78889eb96e1db0eeea054824fb25c0b7303ce Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Mon, 15 Dec 2003 08:00:45 +0000 Subject: #ifdef platform exclusion fixed git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4146 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/video.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/plugins/video.c b/apps/plugins/video.c index 396d5159ec..617ada327c 100644 --- a/apps/plugins/video.c +++ b/apps/plugins/video.c @@ -19,11 +19,12 @@ * KIND, either express or implied. * ****************************************************************************/ -#ifdef HAVE_LCD_BITMAP - #include "plugin.h" #include "system.h" +#ifndef SIMULATOR /* not for simulator by now */ +#ifdef HAVE_LCD_BITMAP /* and definitely not for the Player, haha */ + #define DEFAULT_FILENAME "/default.rvf" #define SCREENSIZE (LCD_WIDTH*LCD_HEIGHT/8) /* in bytes */ #define FILEBUFSIZE SCREENSIZE*4 /* must result in a multiple of 512 */ @@ -195,4 +196,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) return main((char*) parameter); } -#endif // #ifdef HAVE_LCD_BITMAP \ No newline at end of file +#endif /* #ifdef HAVE_LCD_BITMAP */ +#endif /* #ifndef SIMULATOR */ -- cgit v1.2.3