aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-12-15 14:54:35 +0000
committerTravis Howell2003-12-15 14:54:35 +0000
commitbee21ec3f8d04511c46e898542f1153ccba2dc8b (patch)
treed432a92ce09bffa9ad557da7f83e46b72a314634 /scumm/script_v2.cpp
parentaa2173868b387edb82e2409b3e15005e83fc07ce (diff)
downloadscummvm-rg350-bee21ec3f8d04511c46e898542f1153ccba2dc8b.tar.gz
scummvm-rg350-bee21ec3f8d04511c46e898542f1153ccba2dc8b.tar.bz2
scummvm-rg350-bee21ec3f8d04511c46e898542f1153ccba2dc8b.zip
Add extra color table entry for v1 games, for inventory/sentence color.
svn-id: r11653
Diffstat (limited to 'scumm/script_v2.cpp')
-rw-r--r--scumm/script_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 279d179d70..0f898f216a 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -825,7 +825,7 @@ void ScummEngine_v2::o2_verbOps() {
vs->verbid = verb;
if (_version == 1) {
if (_gameId == GID_MANIAC && _demoMode)
- vs->color = 15;
+ vs->color = 16;
else
vs->color = 5;
@@ -1026,7 +1026,7 @@ void ScummEngine_v2::o2_drawSentence() {
_string[2].ypos = virtscr[2].topline;
_string[2].xpos = 0;
if (_version == 1)
- _string[2].color = 4;
+ _string[2].color = 16;
else
_string[2].color = 13;