Skip to content

Commit

Permalink
SHERLOCK: Fix color of talk response text
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 1, 2015
1 parent 2bc1d2b commit d811e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/sherlock/talk.cpp
Expand Up @@ -1573,9 +1573,9 @@ void Talk::doScript(const Common::String &script) {
// If the speaker indicates a description file, print it in yellow
if (_speaker != -1) {
if (ui._windowOpen) {
screen.print(Common::Point(16, yp), INV_FOREGROUND, lineStr.c_str());
screen.print(Common::Point(16, yp), COMMAND_FOREGROUND, lineStr.c_str());
} else {
screen.gPrint(Common::Point(16, yp - 1), INV_FOREGROUND, lineStr.c_str());
screen.gPrint(Common::Point(16, yp - 1), COMMAND_FOREGROUND, lineStr.c_str());
openTalkWindow = true;
}
} else {
Expand Down

0 comments on commit d811e4a

Please sign in to comment.