- Added Blzut3's patch for a real Chex Quest game mode.
SVN r1188 (trunk)
This commit is contained in:
parent
62a9958a9a
commit
dbcc246cf3
47 changed files with 969 additions and 126 deletions
|
|
@ -1374,7 +1374,7 @@ static BYTE BitTranslate[32];
|
|||
|
||||
void M_OptInit (void)
|
||||
{
|
||||
if (gameinfo.gametype == GAME_Doom)
|
||||
if (gameinfo.gametype & GAME_DoomChex)
|
||||
{
|
||||
LabelColor = CR_UNTRANSLATED;
|
||||
ValueColor = CR_GRAY;
|
||||
|
|
@ -1658,7 +1658,7 @@ void M_OptDrawer ()
|
|||
if (BigFont && CurrentMenu->texttitle)
|
||||
{
|
||||
screen->SetFont (BigFont);
|
||||
screen->DrawText (gameinfo.gametype == GAME_Doom ? CR_RED : CR_UNTRANSLATED,
|
||||
screen->DrawText (gameinfo.gametype & GAME_DoomChex ? CR_RED : CR_UNTRANSLATED,
|
||||
160-BigFont->StringWidth (CurrentMenu->texttitle)/2, 10,
|
||||
CurrentMenu->texttitle, DTA_Clean, true, TAG_DONE);
|
||||
screen->SetFont (SmallFont);
|
||||
|
|
@ -2185,7 +2185,7 @@ void M_OptResponder (event_t *ev)
|
|||
{
|
||||
maxitems = 15;
|
||||
}
|
||||
if (gameinfo.gametype != GAME_Doom)
|
||||
if (!(gameinfo.gametype & GAME_DoomChex))
|
||||
{
|
||||
maxitems -= 2;
|
||||
rowheight = 9;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue