forked from len0rd/rockbox
fix checkwps
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30476 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
070f6e1397
commit
a91fa97cd8
1 changed files with 16 additions and 2 deletions
|
@ -28,7 +28,8 @@
|
|||
#include "wps_internals.h"
|
||||
#include "skin_engine.h"
|
||||
|
||||
#if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1))
|
||||
#if !defined(__PCTOOL__) && \
|
||||
((LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)))
|
||||
|
||||
#define NB_BDROPS SKINNABLE_SCREENS_COUNT*NB_SCREENS
|
||||
static struct skin_backdrop {
|
||||
|
@ -233,7 +234,20 @@ void skin_backdrop_load_setting(void)
|
|||
#endif
|
||||
}
|
||||
}
|
||||
#elif defined(__PCTOOL__)
|
||||
|
||||
int skin_backdrop_assign(char* backdrop, char *bmpdir,
|
||||
enum screen_type screen)
|
||||
{
|
||||
(void)backdrop;
|
||||
(void)bmpdir;
|
||||
(void)screen;
|
||||
return 0;
|
||||
}
|
||||
void skin_backdrop_unload(int backdrop_id)
|
||||
{
|
||||
(void)backdrop_id;
|
||||
}
|
||||
#else
|
||||
|
||||
void skin_backdrop_init(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue