aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-12-15 14:54:35 +0000
committerTravis Howell2003-12-15 14:54:35 +0000
commitbee21ec3f8d04511c46e898542f1153ccba2dc8b (patch)
treed432a92ce09bffa9ad557da7f83e46b72a314634 /scumm/saveload.cpp
parentaa2173868b387edb82e2409b3e15005e83fc07ce (diff)
downloadscummvm-rg350-bee21ec3f8d04511c46e898542f1153ccba2dc8b.tar.gz
scummvm-rg350-bee21ec3f8d04511c46e898542f1153ccba2dc8b.tar.bz2
scummvm-rg350-bee21ec3f8d04511c46e898542f1153ccba2dc8b.zip
Add extra color table entry for v1 games, for inventory/sentence color.
svn-id: r11653
Diffstat (limited to 'scumm/saveload.cpp')
-rw-r--r--scumm/saveload.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp
index 986657f936..f9fbdc9430 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -178,12 +178,9 @@ bool ScummEngine::loadState(int slot, bool compat, SaveFileManager *mgr) {
// ever add options for using different 16-colour palettes.
if (_version == 1) {
- if (_gameId == GID_MANIAC) {
+ if (_gameId == GID_MANIAC)
setupV1ManiacPalette();
- if (_demoMode)
- setPalColor(15, 252, 84, 252);
-
- } else
+ else
setupV1ZakPalette();
} else if (_features & GF_16COLOR) {
if ((_features & GF_AMIGA) || (_features & GF_ATARI_ST))