aboutsummaryrefslogtreecommitdiff
path: root/scumm/scummvm.cpp
diff options
context:
space:
mode:
authorMax Horn2004-01-03 21:26:44 +0000
committerMax Horn2004-01-03 21:26:44 +0000
commit22248a548f3794c66534d70ae297c9f25e5673da (patch)
tree20afb47596d742dcd2316cdb3302e4368861fa62 /scumm/scummvm.cpp
parent34db2e793a22fc12b6f30289297aeead967e4f26 (diff)
downloadscummvm-rg350-22248a548f3794c66534d70ae297c9f25e5673da.tar.gz
scummvm-rg350-22248a548f3794c66534d70ae297c9f25e5673da.tar.bz2
scummvm-rg350-22248a548f3794c66534d70ae297c9f25e5673da.zip
removed unused param in initScreens
svn-id: r12119
Diffstat (limited to 'scumm/scummvm.cpp')
-rw-r--r--scumm/scummvm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index ffb7b74942..91768c9d5e 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -1019,11 +1019,11 @@ void ScummEngine::scummInit() {
debug(9, "scummInit");
if ((_gameId == GID_MANIAC) && (_version == 1)) {
- initScreens(0, 16, _screenWidth, 152);
+ initScreens(16, _screenWidth, 152);
} else if (_version >= 7) {
- initScreens(0, 0, _screenWidth, _screenHeight);
+ initScreens(0, _screenWidth, _screenHeight);
} else {
- initScreens(0, 16, _screenWidth, 144);
+ initScreens(16, _screenWidth, 144);
}
for (i = 0; i < 256; i++)