diff options
author | Paul Duncan <pabs@pablotron.org> | 2019-01-14 00:26:18 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2019-01-14 00:26:18 -0500 |
commit | 55d22c6e36b6b575a971202cb62e53a3a6fb54cb (patch) | |
tree | 738b7e8ad43417187c72ca8a034efa167ea6e95a /src/sdl/color.c | |
parent | 5d63ee685c19e2e696a99cce6f0b9fc8cf8ff7de (diff) | |
download | sok-55d22c6e36b6b575a971202cb62e53a3a6fb54cb.tar.bz2 sok-55d22c6e36b6b575a971202cb62e53a3a6fb54cb.zip |
add moves and header text, won bg animation, window title
Diffstat (limited to 'src/sdl/color.c')
-rw-r--r-- | src/sdl/color.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdl/color.c b/src/sdl/color.c index cb94095..16c7cfd 100644 --- a/src/sdl/color.c +++ b/src/sdl/color.c @@ -5,7 +5,7 @@ static const SDL_Color PALETTE[] = { { .r = 0x00, .g = 0x00, .b = 0x00, .a = 0xFF }, // COLOR_BG - { .r = 0x00, .g = 0xFF, .b = 0x00, .a = 0xFF }, // COLOR_BG_WON + { .r = 0x00, .g = 0x66, .b = 0x00, .a = 0xFF }, // COLOR_BG_WON { .r = 0x66, .g = 0x66, .b = 0x66, .a = 0xFF }, // COLOR_WALL { .r = 0x00, .g = 0xFF, .b = 0x00, .a = 0xFF }, // COLOR_GOAL { .r = 0xFF, .g = 0x00, .b = 0x00, .a = 0xFF }, // COLOR_HOME |