diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-15 08:00:45 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-15 08:00:45 +0000 |
| commit | 5ad78889eb96e1db0eeea054824fb25c0b7303ce (patch) | |
| tree | 55d582fa2f1bc78c3f54b69868f61c6c96faf2c6 /apps | |
| parent | bd8f448fd0cb10336c7dbc9a01e0ada0380c1c61 (diff) | |
| download | rockbox-5ad78889eb96e1db0eeea054824fb25c0b7303ce.zip rockbox-5ad78889eb96e1db0eeea054824fb25c0b7303ce.tar.gz rockbox-5ad78889eb96e1db0eeea054824fb25c0b7303ce.tar.bz2 rockbox-5ad78889eb96e1db0eeea054824fb25c0b7303ce.tar.xz | |
#ifdef platform exclusion fixed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4146 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -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 */ |