diff options
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/video.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/video.c b/apps/plugins/video.c index 396d515..617ada3 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 */ |