- fixed: text colore for thing-based secrets was wrong.

SVN r3114 (trunk)
This commit is contained in:
Christoph Oelckers 2011-01-22 17:05:02 +00:00
parent d9d94d04ba
commit 5e50e15d5e
1 changed files with 2 additions and 2 deletions

View File

@ -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);