aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-05-21 04:06:47 +0000
committerTravis Howell2005-05-21 04:06:47 +0000
commitc4d567561d2614942384ba24a06897a5f7ffa35b (patch)
treee3ba9002e1c842e0888a1ca226e9d923e833e968
parentf9e4a2d2a24fbfc8b9889ebc51cf40b61fada4cc (diff)
downloadscummvm-rg350-c4d567561d2614942384ba24a06897a5f7ffa35b.tar.gz
scummvm-rg350-c4d567561d2614942384ba24a06897a5f7ffa35b.tar.bz2
scummvm-rg350-c4d567561d2614942384ba24a06897a5f7ffa35b.zip
Only needed for C64 maniac.
svn-id: r18199
-rw-r--r--scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 4ada906b38..31a21202cc 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1462,7 +1462,7 @@ int ScummEngine::init(GameDetector &detector) {
if (_features & GF_NEW_COSTUMES) {
_costumeRenderer = new AkosRenderer(this);
_costumeLoader = new AkosCostumeLoader(this);
- } else if (_platform == Common::kPlatformC64) {
+ } else if (_platform == Common::kPlatformC64 && _gameId == GID_MANIAC) {
_costumeRenderer = new C64CostumeRenderer(this);
_costumeLoader = new C64CostumeLoader(this);
} else if (_platform == Common::kPlatformNES) {