diff options
| -rw-r--r-- | firmware/export/config-iaudiox5.h | 3 | ||||
| -rw-r--r-- | uisimulator/sdl/uisdl.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/firmware/export/config-iaudiox5.h b/firmware/export/config-iaudiox5.h index 4f0d183..8250e08 100644 --- a/firmware/export/config-iaudiox5.h +++ b/firmware/export/config-iaudiox5.h @@ -17,7 +17,8 @@ /* LCD dimensions */ #define LCD_WIDTH 160 #define LCD_HEIGHT 128 -#define LCD_DEPTH 18 /* pseudo 262.144 colors */ +#define LCD_DEPTH 16 /* pseudo 262.144 colors */ +#define LCD_PIXELFORMAT RGB565 /* rgb565 */ /* remote LCD */ #define LCD_REMOTE_WIDTH 128 diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h index 0501028..98e72aa 100644 --- a/uisimulator/sdl/uisdl.h +++ b/uisimulator/sdl/uisdl.h @@ -179,6 +179,7 @@ #define UI_REMOTE_HEIGHT 64 #define UI_REMOTE_BGCOLORLIGHT 250, 180, 130 // bkgnd of remote lcd (bklight) +#define UI_REMOTE_BGCOLOR 90, 145, 90 // bkgnd of remote lcd (no bklight) #endif extern SDL_Surface *gui_surface; |