aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-10-25 14:20:47 +0000
committerTravis Howell2009-10-25 14:20:47 +0000
commit4064d35d1582e6d18b92c5ec352bde902b41e0d8 (patch)
treeca008bcb480131905aee04d8509e6276cfa394dc /engines/scumm/scumm.cpp
parent6e5dd8e357ac5f8c08e9713b59d1858086073a36 (diff)
downloadscummvm-rg350-4064d35d1582e6d18b92c5ec352bde902b41e0d8.tar.gz
scummvm-rg350-4064d35d1582e6d18b92c5ec352bde902b41e0d8.tar.bz2
scummvm-rg350-4064d35d1582e6d18b92c5ec352bde902b41e0d8.zip
Add patch from Tobias, for initial costume support in PCE version of Loom, with minor changes.
svn-id: r45370
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index 19c76d6b7d..b8afb5460e 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1284,7 +1284,7 @@ void ScummEngine::setupCostumeRenderer() {
_costumeLoader = new NESCostumeLoader(this);
} else if (_game.platform == Common::kPlatformPCEngine) {
_costumeRenderer = new PCEngineCostumeRenderer(this);
- _costumeLoader = new PCEngineCostumeLoader(this);
+ _costumeLoader = new ClassicCostumeLoader(this);
} else {
_costumeRenderer = new ClassicCostumeRenderer(this);
_costumeLoader = new ClassicCostumeLoader(this);