diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/wiz_he.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp index b4f729d7a0..caf391c020 100644 --- a/scumm/wiz_he.cpp +++ b/scumm/wiz_he.cpp @@ -1449,6 +1449,9 @@ void ScummEngine_v90he::processWizImage(const WizParameters *params) { } break; // HE 99+ + case 7: + // Used in soccer2004 + break; case 8: createWizEmptyImage(params); break; @@ -1456,8 +1459,7 @@ void ScummEngine_v90he::processWizImage(const WizParameters *params) { fillWizRect(params); break; default: - warning("Unhandled processWizImage mode %d", params->processMode); - break; + error("Unhandled processWizImage mode %d", params->processMode); } } |