aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/scumm.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 16f66af3b4..d79d9ee0f4 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1557,7 +1557,10 @@ void ScummEngine::scummInit() {
debug(9, "scummInit");
if ((_gameId == GID_MANIAC) && (_version == 1) && !(_platform == Common::kPlatformNES)) {
- initScreens(16, 152);
+ if (_platform == Common::kPlatformC64)
+ initScreens(8, 144);
+ else
+ initScreens(16, 152);
} else if (_version >= 7 || _heversion >= 71) {
initScreens(0, _screenHeight);
} else {