diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2011-09-24 13:29:21 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2011-09-24 13:29:21 +0000 |
commit | b71c66ec56f7bb2cad4d9eecd8fd3f1ebc4c3b72 (patch) | |
tree | 91435076e6a9efb9a0d93f270ff29aed0b740bd5 /tools/checkwps/checkwps.c | |
parent | aa0f4a4bbe370032d8166628f456709be1330118 (diff) |
Fix the build errors
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30590 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/checkwps/checkwps.c')
-rw-r--r-- | tools/checkwps/checkwps.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/checkwps/checkwps.c b/tools/checkwps/checkwps.c index 39d4358320..e104928909 100644 --- a/tools/checkwps/checkwps.c +++ b/tools/checkwps/checkwps.c @@ -149,6 +149,8 @@ struct user_settings global_settings = { #endif }; +struct system_status global_status; + int getwidth(void) { return LCD_WIDTH; } int getheight(void) { return LCD_HEIGHT; } #ifdef HAVE_REMOTE_LCD @@ -218,9 +220,9 @@ bool radio_hardware_present(void) #ifdef HAVE_LCD_BITMAP static int loaded_fonts = 0; -int font_load(struct font* pf, const char *path) +int font_load(const char *path) { - int id = SYSTEMFONTCOUNT + loaded_fonts; + int id = 2 + loaded_fonts; loaded_fonts++; return id; } @@ -273,9 +275,6 @@ int main(int argc, char **argv) } skin_buffer_init(buffer, SKIN_BUFFER_SIZE); -#ifdef HAVE_LCD_BITMAP - skin_font_init(); -#endif /* Go through every skin that was thrown at us, error out at the first * flawed wps */ |