Light grey for disabled buttons was WAY too light -- hard to see!!!
This commit is contained in:
parent
bf825a8330
commit
1e6d9aebea
1 changed files with 2 additions and 1 deletions
|
|
@ -6975,7 +6975,8 @@ static void setup(int argc, char * argv[])
|
||||||
img_btn_off->format->Gmask,
|
img_btn_off->format->Gmask,
|
||||||
img_btn_off->format->Bmask,
|
img_btn_off->format->Bmask,
|
||||||
img_btn_off->format->Amask);
|
img_btn_off->format->Amask);
|
||||||
SDL_FillRect(img_grey, NULL, SDL_MapRGBA(screen->format, 0xe7, 0xe7, 0xe7, 255));
|
// SDL_FillRect(img_grey, NULL, SDL_MapRGBA(screen->format, 0xe7, 0xe7, 0xe7, 255)); // WAY too light!
|
||||||
|
SDL_FillRect(img_grey, NULL, SDL_MapRGBA(screen->format, 0x88, 0x88, 0x88, 255)); // Easier to see
|
||||||
|
|
||||||
show_progress_bar();
|
show_progress_bar();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue