diff options
author | Travis Howell | 2009-10-27 09:29:47 +0000 |
---|---|---|
committer | Travis Howell | 2009-10-27 09:29:47 +0000 |
commit | 64515d892c709867ca4984a5c02e48c9645b5684 (patch) | |
tree | 1f508e1a061859a7f10ece99c075ac64e5442998 /engines | |
parent | a6195bc1752c4e44fcdd4cdfb25e640608afd785 (diff) | |
download | scummvm-rg350-64515d892c709867ca4984a5c02e48c9645b5684.tar.gz scummvm-rg350-64515d892c709867ca4984a5c02e48c9645b5684.tar.bz2 scummvm-rg350-64515d892c709867ca4984a5c02e48c9645b5684.zip |
Fix restoring distaff, after reloading saved game in PCE version of Loom.
svn-id: r45435
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/scumm.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 3732703262..e04649e1e9 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -1950,7 +1950,8 @@ load_game: if (_game.platform == Common::kPlatformMacintosh) var = 105; - else if (_game.version == 4) // 256 color CD version + // 256 color CD version and PC engine version + else if (_game.platform == Common::kPlatformPCEngine || _game.version == 4) var = 150; else var = 100; |