From 36c71a60ca82f9777fbdd239f63f62ccf68cf3f5 Mon Sep 17 00:00:00 2001 From: Maurus Cuelenaere Date: Thu, 29 Jan 2009 20:49:43 +0000 Subject: Get checkwps working again git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19880 a1c6a512-1295-4272-9138-f99709370657 --- tools/checkwps/checkwps.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tools/checkwps/checkwps.h') diff --git a/tools/checkwps/checkwps.h b/tools/checkwps/checkwps.h index fa3b425500..2ba8f5f59e 100644 --- a/tools/checkwps/checkwps.h +++ b/tools/checkwps/checkwps.h @@ -23,20 +23,22 @@ #define _CHECKWPS_H_ #include #include +#include #include /* subset of global_settings needed to build checkwps. */ struct user_settings { bool statusbar; -#ifdef HAVE_LCD_COLOR int bg_color; /* background color native format */ int fg_color; /* foreground color native format */ -#endif }; extern struct user_settings global_settings; +#define FONT_SYSFIXED 0 +#define FONT_UI 1 +#define SYSFONT_HEIGHT 8 - +#define MIN(x,y) ((x) > (y) ? (y) : (x)) #endif -- cgit