[Scummvm-cvs-logs] CVS: scummvm/scumm scumm.cpp,1.520,1.521
kirben
kirben at users.sourceforge.net
Wed May 18 19:21:03 CEST 2005
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31377/scumm
Modified Files:
scumm.cpp
Log Message:
Only a single line for subtitles in C64 maniac.
Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.520
retrieving revision 1.521
diff -u -d -r1.520 -r1.521
--- scumm.cpp 18 May 2005 15:57:16 -0000 1.520
+++ scumm.cpp 19 May 2005 02:18:34 -0000 1.521
@@ -1557,7 +1557,10 @@
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 {
More information about the Scummvm-git-logs
mailing list