diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v6he.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp index f7cebb2deb..766f1fac28 100644 --- a/scumm/script_v6he.cpp +++ b/scumm/script_v6he.cpp @@ -426,7 +426,10 @@ void ScummEngine_v6he::o6_roomOps() { case 174: // SO_ROOM_SCREEN b = pop(); a = pop(); - initScreens(a, b); + if (_heversion >= 71) + initScreens(a, _screenHeight); + else + initScreens(a, b); break; case 175: // SO_ROOM_PALETTE |