- Fixed: The big endian version of PalEntry did not add the DWORD d field.

- Fixed: TObjPtr did not use a union to map its 2 pointers together.
- Added a compatibility mode for A_Mushroom. For DECORATE it is an additional
  parameter but to force it for Dehacked mods some minor hacks using the
  Misc1 variable were needed.


SVN r1746 (trunk)
This commit is contained in:
Christoph Oelckers 2009-08-02 10:48:58 +00:00
commit 641f946e32
7 changed files with 63 additions and 7 deletions

View file

@ -1715,6 +1715,11 @@ static int PatchCodePtrs (int dummy)
}
}
SetPointer(state, sym);
// Hack to trigger compatible mode for A_Mushroom when called from Dehacked mods
if (symname.CompareNoCase("A_Mushroom"))
{
state->Misc1 = 1;
}
}
}
}