Add support for using disks images for Apple II version of Maniac Mansion.

svn-id: r25846
This commit is contained in:
Travis Howell 2007-02-25 07:23:52 +00:00
parent 87832481de
commit 19d2310b71
10 changed files with 78 additions and 22 deletions

View file

@ -33,7 +33,10 @@ namespace Scumm {
void ScummEngine::resetPalette() {
if (_game.version <= 1) {
if (_game.platform == Common::kPlatformC64) {
if (_game.platform == Common::kPlatformApple2GS) {
// TODO: unique palette?
setC64Palette();
} else if (_game.platform == Common::kPlatformC64) {
setC64Palette();
} else if (_game.platform == Common::kPlatformNES) {
setNESPalette();