Add support for using disks images for Apple II version of Maniac Mansion.
svn-id: r25846
This commit is contained in:
parent
87832481de
commit
19d2310b71
10 changed files with 78 additions and 22 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue