From 5e50e15d5e9f69fccb146ae1d387cbb5e2a9558c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 22 Jan 2011 17:05:02 +0000 Subject: [PATCH] - fixed: text colore for thing-based secrets was wrong. SVN r3114 (trunk) --- src/c_cmds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/c_cmds.cpp b/src/c_cmds.cpp index b3e43f92f..48cb2f103 100644 --- a/src/c_cmds.cpp +++ b/src/c_cmds.cpp @@ -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);