aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 8d4c1bdaa4..75b9e31d2b 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1534,10 +1534,14 @@ void ScummEngine_v2::scummInit() {
initV2MouseOver();
- // Seems in V2 there was only a single room effect (iris),
- // so we set that here.
- _switchRoomEffect2 = 1;
- _switchRoomEffect = 5;
+ if (_features & GF_NES) {
+ _switchRoomEffect2 = _switchRoomEffect = 6;
+ } else {
+ // Seems in V2 there was only a single room effect (iris),
+ // so we set that here.
+ _switchRoomEffect2 = 1;
+ _switchRoomEffect = 5;
+ }
}
void ScummEngine_v6::scummInit() {