summaryrefslogtreecommitdiff
path: root/uisimulator/sdl/uisdl.h
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2008-12-04 23:24:45 +0000
committerRafaël Carré <rafael.carre@gmail.com>2008-12-04 23:24:45 +0000
commitbba06cfd551c7d34308ef7ea52455f07a5e2cfee (patch)
tree47a70eb6c2e63c71345dcf700bc0f88d4c33ac09 /uisimulator/sdl/uisdl.h
parente3a970f4eb3068055f806a3194883eb157f8b1ed (diff)
downloadrockbox-bba06cfd551c7d34308ef7ea52455f07a5e2cfee.tar.gz
rockbox-bba06cfd551c7d34308ef7ea52455f07a5e2cfee.zip
Sansa Clip Simulator: emulate the real screen at the price of some CPU (FS#9521)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19347 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/sdl/uisdl.h')
-rw-r--r--uisimulator/sdl/uisdl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h
index 0a97df56fa..cb4158500c 100644
--- a/uisimulator/sdl/uisdl.h
+++ b/uisimulator/sdl/uisdl.h
@@ -459,6 +459,13 @@
459#define UI_LCD_FGCOLOR 0, 0, 0 /* foreground color of LCD (no backlight) */ 459#define UI_LCD_FGCOLOR 0, 0, 0 /* foreground color of LCD (no backlight) */
460#define UI_LCD_FGCOLORLIGHT 13, 226, 229 /* foreground color of LCD (backlight) */ 460#define UI_LCD_FGCOLORLIGHT 13, 226, 229 /* foreground color of LCD (backlight) */
461 461
462#define UI_LCD_SPLIT /* The screen is split in 2 areas */
463#define UI_LCD_SPLIT_LINES 16 /* the top 16 lines have a different color */
464#define UI_LCD_SPLIT_BLACK_LINES 2 /* The 2 areas are separated by 2 empty lines */
465/* Colors for the top part of the screen */
466#define UI_LCD_SPLIT_FGCOLOR 0, 0, 0 /* foreground color of LCD (no backlight) */
467#define UI_LCD_SPLIT_FGCOLORLIGHT 255, 230, 15 /* foreground color of LCD (backlight) */
468
462#endif 469#endif
463extern SDL_Surface *gui_surface; 470extern SDL_Surface *gui_surface;
464extern bool background; /* True if the background image is enabled */ 471extern bool background; /* True if the background image is enabled */