aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scumm.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 8eb9b13839..2417cd5911 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -2327,8 +2327,10 @@ void ScummEngine::startScene(int room, Actor *a, int objectNr) {
stopCycle(0);
_sound->processSoundQues();
- for (i = 0; i < _WizNumPolygons; i++)
- memset(&_WizPolygons[i], 0, sizeof(WizPolygon));
+ if (_heversion >= 70 && _WizPolygons) {
+ for (i = 0; i < _WizNumPolygons; i++)
+ memset(&_WizPolygons[i], 0, sizeof(WizPolygon));
+ }
for (i = 0; i < _numRoomVariables; i++)
_roomVars[i] = 0;