diff options
author | Robert Kukla <roolku@rockbox.org> | 2008-01-20 22:57:49 +0000 |
---|---|---|
committer | Robert Kukla <roolku@rockbox.org> | 2008-01-20 22:57:49 +0000 |
commit | c1791a540ec3599de0f3e03cc24c669970d1fa51 (patch) | |
tree | a5d9fe7d905a2fc8e3cab55ce78f90dcde53c1ca /uisimulator/sdl/uisdl.h | |
parent | b5acab1bcf0970142ec72b29de7854244a44e04c (diff) |
compile uisimulator for m:robe 100, button definitions taken from h10 for now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16123 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/sdl/uisdl.h')
-rw-r--r-- | uisimulator/sdl/uisdl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h index 9be517c997..7d11bfab20 100644 --- a/uisimulator/sdl/uisdl.h +++ b/uisimulator/sdl/uisdl.h @@ -310,6 +310,17 @@ #define UI_LCD_BGCOLORLIGHT 173, 216, 230 /* bkgnd color of LCD (backlight) */ #define UI_LCD_BLACK 0, 0, 0 /* black */ +#elif defined(MROBE_100) +#define UI_TITLE "Olympus M:Robe 100" +#define UI_WIDTH 247 /* width of GUI window */ +#define UI_HEIGHT 416 /* height of GUI window */ +#define UI_LCD_BGCOLOR 94, 2, 2 /* bkgnd color of LCD (no backlight) */ +#define UI_LCD_BGCOLORLIGHT 241, 6, 3 /* bkgnd color of LCD (backlight) */ +#define UI_LCD_BLACK 0, 0, 0 /* black */ +#define UI_LCD_POSX 43 /* x position of lcd */ +#define UI_LCD_POSY 25 /* y position of lcd */ +#define UI_LCD_WIDTH 160 +#define UI_LCD_HEIGHT 128 #endif extern SDL_Surface *gui_surface; extern bool background; /* True if the background image is enabled */ |