aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-19 02:18:34 +0000
committerTravis Howell2005-05-19 02:18:34 +0000
commitda9eaffd506aaee626ec2937c97a0f706f0b13cb (patch)
treee30039de8d429fc6d0cee2e9286a153fa806a425 /scumm/scumm.cpp
parent43a5aff7bc1b06fd58c6b7e299429c88b8decd68 (diff)
downloadscummvm-rg350-da9eaffd506aaee626ec2937c97a0f706f0b13cb.tar.gz
scummvm-rg350-da9eaffd506aaee626ec2937c97a0f706f0b13cb.tar.bz2
scummvm-rg350-da9eaffd506aaee626ec2937c97a0f706f0b13cb.zip
Only a single line for subtitles in C64 maniac.
svn-id: r18181
Diffstat (limited to 'scumm/scumm.cpp')
-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 {