summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/win32/lcd.c2
-rw-r--r--uisimulator/win32/uisw32.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/win32/lcd.c b/uisimulator/win32/lcd.c
index 2d1d80ccc7..21c79bd620 100644
--- a/uisimulator/win32/lcd.c
+++ b/uisimulator/win32/lcd.c
@@ -410,7 +410,7 @@ BITMAPINFO2 bmi =
410 DISP_X, -DISP_Y, 1, 8, 410 DISP_X, -DISP_Y, 1, 8,
411 BI_RGB, 0, 0, 0, 2, 2, 411 BI_RGB, 0, 0, 0, 2, 2,
412 UI_LCD_COLOR, 0, // green background color 412 UI_LCD_COLOR, 0, // green background color
413 0, 0, 0, 0 // black color 413 UI_LCD_BLACK, 0 // black color
414}; // bitmap information 414}; // bitmap information
415 415
416 416
diff --git a/uisimulator/win32/uisw32.h b/uisimulator/win32/uisw32.h
index c1001d7222..37edb0c4b8 100644
--- a/uisimulator/win32/uisw32.h
+++ b/uisimulator/win32/uisw32.h
@@ -25,7 +25,7 @@
25#define UI_WIDTH 240 // width of GUI window 25#define UI_WIDTH 240 // width of GUI window
26#define UI_HEIGHT 360 // height of GUI window 26#define UI_HEIGHT 360 // height of GUI window
27#define UI_LCD_COLOR 46, 57, 49 // bkgnd color of LCD 27#define UI_LCD_COLOR 46, 57, 49 // bkgnd color of LCD
28#define UI_LCD_BLACK RGB (0, 0, 0) // black 28#define UI_LCD_BLACK 0, 0, 0 // black
29#define UI_LCD_POSX 59 // x position of lcd 29#define UI_LCD_POSX 59 // x position of lcd
30#define UI_LCD_POSY 95 // y position of lcd 30#define UI_LCD_POSY 95 // y position of lcd
31 31