aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorGregory Montoir2005-11-01 13:55:53 +0000
committerGregory Montoir2005-11-01 13:55:53 +0000
commited8fb560b5d01e6761e3a3db1ab98cb111a08bed (patch)
treebfc76e876b9b5502bb52ca5479ecc16566cbe2b7 /scumm
parentbe1cf8c0e4865ca54c145a1ab7671a17e7e84d20 (diff)
downloadscummvm-rg350-ed8fb560b5d01e6761e3a3db1ab98cb111a08bed.tar.gz
scummvm-rg350-ed8fb560b5d01e6761e3a3db1ab98cb111a08bed.tar.bz2
scummvm-rg350-ed8fb560b5d01e6761e3a3db1ab98cb111a08bed.zip
forgot to clear _colorUsedByCycle at startup.
svn-id: r19383
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scumm.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index fad8e7870d..562c93cedc 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1081,6 +1081,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
memset(virtscr, 0, sizeof(virtscr));
memset(&camera, 0, sizeof(CameraData));
memset(_colorCycle, 0, sizeof(_colorCycle));
+ memset(_colorUsedByCycle, 0, sizeof(_colorUsedByCycle));
_ENCD_offs = 0;
_EXCD_offs = 0;
_CLUT_offs = 0;