#ifdef platform exclusion fixed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4146 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bd8f448fd0
commit
5ad78889eb
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
#endif /* #ifdef HAVE_LCD_BITMAP */
|
||||
#endif /* #ifndef SIMULATOR */
|
||||
|
|
Loading…
Reference in a new issue