Skip to content

Commit

Permalink
Fixed initialization of MENU_COLOR3 in Heretic and Hexen.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Sep 23, 2010
1 parent 5db8995 commit 2ccfd91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions doomsday/plugins/jheretic/src/h_main.c
Expand Up @@ -327,6 +327,9 @@ void G_PreInit(void)
cfg.menuColors[1][0] = defFontRGB2[0];
cfg.menuColors[1][1] = defFontRGB2[1];
cfg.menuColors[1][2] = defFontRGB2[2];
cfg.menuColors[2][0] = defFontRGB3[0];
cfg.menuColors[2][1] = defFontRGB3[1];
cfg.menuColors[2][2] = defFontRGB3[2];
cfg.menuSlam = true;
cfg.menuHotkeys = true;
cfg.askQuickSaveLoad = true;
Expand Down
3 changes: 3 additions & 0 deletions doomsday/plugins/jhexen/src/h2_main.c
Expand Up @@ -284,6 +284,9 @@ void G_PreInit(void)
cfg.menuColors[1][0] = defFontRGB2[0]; // use the default colour by default.
cfg.menuColors[1][1] = defFontRGB2[1];
cfg.menuColors[1][2] = defFontRGB2[2];
cfg.menuColors[2][0] = defFontRGB3[0];
cfg.menuColors[2][1] = defFontRGB3[1];
cfg.menuColors[2][2] = defFontRGB3[2];
cfg.menuEffects = 0;
cfg.menuHotkeys = true;
cfg.menuNoStretch = false;
Expand Down

0 comments on commit 2ccfd91

Please sign in to comment.