diff options
| author | Felix Arends <edx@rockbox.org> | 2002-04-26 05:37:29 +0000 |
|---|---|---|
| committer | Felix Arends <edx@rockbox.org> | 2002-04-26 05:37:29 +0000 |
| commit | 7017fce0c7875f6be5c52cbfdc3139cebf213982 (patch) | |
| tree | 726c7f899695bc5d0f15d481f40c799d4a672585 | |
| parent | bd0165c91cacecffbb5ae2e69cb27ae3773ebc7c (diff) | |
| download | rockbox-7017fce0c7875f6be5c52cbfdc3139cebf213982.zip rockbox-7017fce0c7875f6be5c52cbfdc3139cebf213982.tar.gz rockbox-7017fce0c7875f6be5c52cbfdc3139cebf213982.tar.bz2 rockbox-7017fce0c7875f6be5c52cbfdc3139cebf213982.tar.xz | |
a little fix of one constant only...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@240 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/lcd.c | 2 | ||||
| -rw-r--r-- | uisimulator/win32/uisw32.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/win32/lcd.c b/uisimulator/win32/lcd.c index 2d1d80c..21c79bd 100644 --- a/uisimulator/win32/lcd.c +++ b/uisimulator/win32/lcd.c @@ -410,7 +410,7 @@ BITMAPINFO2 bmi = DISP_X, -DISP_Y, 1, 8, BI_RGB, 0, 0, 0, 2, 2, UI_LCD_COLOR, 0, // green background color - 0, 0, 0, 0 // black color + UI_LCD_BLACK, 0 // black color }; // bitmap information diff --git a/uisimulator/win32/uisw32.h b/uisimulator/win32/uisw32.h index c1001d7..37edb0c 100644 --- a/uisimulator/win32/uisw32.h +++ b/uisimulator/win32/uisw32.h @@ -25,7 +25,7 @@ #define UI_WIDTH 240 // width of GUI window #define UI_HEIGHT 360 // height of GUI window #define UI_LCD_COLOR 46, 57, 49 // bkgnd color of LCD -#define UI_LCD_BLACK RGB (0, 0, 0) // black +#define UI_LCD_BLACK 0, 0, 0 // black #define UI_LCD_POSX 59 // x position of lcd #define UI_LCD_POSY 95 // y position of lcd |