aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/scumm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 02604cb1f9..cdf29f2b6a 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -2491,7 +2491,8 @@ void ScummEngine::initRoomSubBlocks() {
}
// Color cycling
- if (_version >= 4) {
+ // HE 7.0 games load resources but don't use them.
+ if (_version >= 4 && _heversion <= 60) {
if (_features & GF_SMALL_HEADER)
ptr = findResourceSmall (MKID('CYCL'), roomptr);
else