aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-09-08 06:38:31 +0000
committerTravis Howell2004-09-08 06:38:31 +0000
commitc9a4f23e51aa190b5fe4c52d1c8a38b0560d8f71 (patch)
tree6e469dcd5882aca4abc6a37c9da4abfb08042d7e /scumm/resource.cpp
parent8d6e15b34af3b1ba960cdff580482bb962d59baf (diff)
downloadscummvm-rg350-c9a4f23e51aa190b5fe4c52d1c8a38b0560d8f71.tar.gz
scummvm-rg350-c9a4f23e51aa190b5fe4c52d1c8a38b0560d8f71.tar.bz2
scummvm-rg350-c9a4f23e51aa190b5fe4c52d1c8a38b0560d8f71.zip
No shadow palette in later games.
svn-id: r14955
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r--scumm/resource.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 9dc32fb6fe..cc04573acc 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -2321,8 +2321,6 @@ void ScummEngine::readMAXS(int blockSize) {
_numRoomVariables = 64;
_numGlobalScripts = 200;
- _shadowPaletteSize = 256;
-
} else if (_heversion >= 70 && (blockSize == 38 + 8)) { // Scummsys.9x
_numVariables = _fileHandle.readUint16LE();
_fileHandle.readUint16LE();
@@ -2349,7 +2347,6 @@ void ScummEngine::readMAXS(int blockSize) {
_numRoomVariables = 64;
_numGlobalScripts = 200;
- _shadowPaletteSize = 256;
} else if (_heversion >= 70 && blockSize > 38) { // sputm7.2
if (blockSize != 32 + 8)
error("MAXS block of size %d not supported, please report", blockSize);
@@ -2374,7 +2371,6 @@ void ScummEngine::readMAXS(int blockSize) {
_objectRoomTable = (byte *)calloc(_numGlobalObjects, 1);
_numGlobalScripts = 200;
- _shadowPaletteSize = 256;
} else if (_version == 6) {
if (blockSize != 30 + 8)
error("MAXS block of size %d not supported", blockSize);