diff options
author | Travis Howell | 2005-09-30 13:46:46 +0000 |
---|---|---|
committer | Travis Howell | 2005-09-30 13:46:46 +0000 |
commit | 04d51b04027345fd38d1acbd2a0ea124d90ade62 (patch) | |
tree | 577ce9e12c8d0853eb0c912e3f3f09c8b3679bad | |
parent | 99e6a320378da92acab1a209ea8764b2c7eec8d1 (diff) | |
download | scummvm-rg350-04d51b04027345fd38d1acbd2a0ea124d90ade62.tar.gz scummvm-rg350-04d51b04027345fd38d1acbd2a0ea124d90ade62.tar.bz2 scummvm-rg350-04d51b04027345fd38d1acbd2a0ea124d90ade62.zip |
Add missing case.
svn-id: r18906
-rw-r--r-- | scumm/script_v5.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index beb1713778..a33e522d94 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1943,6 +1943,7 @@ void ScummEngine_v5::o5_roomOps() { case 20: // disable palette operations case 21: // disable clearing of screen 0x1C:0x5000 sizeof(640 * 320) in initScreens() case 22: // enable clearing of screen 0x1C:0x5000 sizeof(640 * 320) in initScreens() + case 30: debug(0, "o5_roomOps: unhandled FM-TOWNS fadeEffect %d", a); return; break; |