diff options
author | Travis Howell | 2006-02-27 12:00:10 +0000 |
---|---|---|
committer | Travis Howell | 2006-02-27 12:00:10 +0000 |
commit | be30d257e30eed665cffa7776e788d72468888c4 (patch) | |
tree | b86d802aa68f100f45b42949b3f6c07c01d6666b /engines | |
parent | fa6821df14d40a6d39baec45bb40f12e5b8f5f2d (diff) | |
download | scummvm-rg350-be30d257e30eed665cffa7776e788d72468888c4.tar.gz scummvm-rg350-be30d257e30eed665cffa7776e788d72468888c4.tar.bz2 scummvm-rg350-be30d257e30eed665cffa7776e788d72468888c4.zip |
Charset 0 is loaded on start in original versions of OLD_BUNDLE games too
svn-id: r20955
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/scumm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index a9477dad00..7f6ec72bee 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -1337,11 +1337,11 @@ void ScummEngine::scummInit() { } } - if (_game.version > 3 && _game.version < 8) + if (_game.version >= 4 && _game.version <= 7) loadCharset(1); if (_game.features & GF_OLD_BUNDLE) - loadCharset(0); // FIXME - HACK ? + loadCharset(0); setShake(0); setupCursor(); |