aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock
diff options
context:
space:
mode:
authorPaul Gilbert2015-04-30 20:44:19 -1000
committerPaul Gilbert2015-04-30 20:44:19 -1000
commitd811e4a9ff48426b01f199db8f24b00e679592d5 (patch)
treeae361f378da1a965d641668e57ad8726e3f5ee79 /engines/sherlock
parent2bc1d2badc79ba2d49ebc225731d602938f7d49e (diff)
downloadscummvm-rg350-d811e4a9ff48426b01f199db8f24b00e679592d5.tar.gz
scummvm-rg350-d811e4a9ff48426b01f199db8f24b00e679592d5.tar.bz2
scummvm-rg350-d811e4a9ff48426b01f199db8f24b00e679592d5.zip
SHERLOCK: Fix color of talk response text
Diffstat (limited to 'engines/sherlock')
-rw-r--r--engines/sherlock/talk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/talk.cpp b/engines/sherlock/talk.cpp
index eb5c763106..2c59876e84 100644
--- a/engines/sherlock/talk.cpp
+++ b/engines/sherlock/talk.cpp
@@ -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 {