diff options
author | Travis Howell | 2005-03-24 04:15:01 +0000 |
---|---|---|
committer | Travis Howell | 2005-03-24 04:15:01 +0000 |
commit | 50759016b0f7cdd48238f6ecf71445351fa674ae (patch) | |
tree | 3dcb94070478c92b38d7e0c82a97a50c1e4d910c /scumm | |
parent | 0030fab85ad3bcdc39d35743dd6b8d293ed6e7d8 (diff) | |
download | scummvm-rg350-50759016b0f7cdd48238f6ecf71445351fa674ae.tar.gz scummvm-rg350-50759016b0f7cdd48238f6ecf71445351fa674ae.tar.bz2 scummvm-rg350-50759016b0f7cdd48238f6ecf71445351fa674ae.zip |
Change processWizImage() to error on unknown case, to see where additional cases are required.
Update HE issues.
svn-id: r17216
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); } } |