Skip to content

Commit

Permalink
HacX|Game Menu: Swapped default menu colors to better match the origi…
Browse files Browse the repository at this point in the history
…nal game
  • Loading branch information
danij-deng committed Feb 4, 2012
1 parent 80b33ce commit a8b00e9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions doomsday/plugins/jdoom/src/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,9 @@ void D_PreInit(void)
{
cfg.menuTextColors[0][CR] = cfg.menuTextColors[0][CG] = cfg.menuTextColors[0][CB] = 1;
memcpy(cfg.menuTextColors[1], defFontRGB, sizeof(cfg.menuTextColors[1]));
cfg.menuTextColors[2][CR] = .2f;
cfg.menuTextColors[2][CG] = .2f;
cfg.menuTextColors[2][CB] = .9f;
memcpy(cfg.menuTextColors[3], defFontRGB2, sizeof(cfg.menuTextColors[3]));
cfg.menuTextColors[2][CR] = cfg.menuTextColors[3][CR] = .2f;
cfg.menuTextColors[2][CG] = cfg.menuTextColors[3][CG] = .2f;
cfg.menuTextColors[2][CB] = cfg.menuTextColors[3][CB] = .9f;
}
else
{
Expand Down

0 comments on commit a8b00e9

Please sign in to comment.