mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- fixed: text colore for thing-based secrets was wrong.
SVN r3114 (trunk)
This commit is contained in:
parent
d9d94d04ba
commit
5e50e15d5e
1 changed files with 2 additions and 2 deletions
|
@ -1028,8 +1028,8 @@ static void PrintSecretString(const char *string, bool thislevel)
|
|||
break;
|
||||
}
|
||||
}
|
||||
if (foundone) colstr = TEXTCOLOR_YELLOW;
|
||||
else colstr = TEXTCOLOR_RED;
|
||||
if (foundone) colstr = TEXTCOLOR_RED;
|
||||
else colstr = TEXTCOLOR_GREEN;
|
||||
}
|
||||
}
|
||||
FBrokenLines *brok = V_BreakLines(ConFont, screen->GetWidth()*95/100, string);
|
||||
|
|
Loading…
Reference in a new issue