Preliminary support for MM NES.

svn-id: r17133
This commit is contained in:
Eugene Sandulenko 2005-03-13 23:18:59 +00:00
parent e7ea46c0a3
commit 654528422d
9 changed files with 409 additions and 28 deletions

View file

@ -1534,10 +1534,9 @@ void ScummEngine_v2::o2_dummy() {
void ScummEngine_v2::o2_switchCostumeSet() {
// NES version of maniac uses this to switch between the two
// groups of costumes it has
if (_features & GF_NES) {
warning("stub: o2_switchCostumeSet()");
fetchScriptByte();
} else
if (_features & GF_NES)
_v1MMNESCostumeSet = fetchScriptByte();
else
o2_dummy();
}