- Fixed: The automap code had the check for rotation reversed.

- Changed type PClass::FreeIndices to TArray<unsigned int> because that's
  the type of the indices.
- Fixed: makewad.c needs __cdecl for non-Windows builds.
- Fixed: FinishThingdef didn't check whether the WeaponClass pointer in
  AWeaponPiece was a valid name.



SVN r133 (trunk)
This commit is contained in:
Christoph Oelckers 2006-05-20 09:16:08 +00:00
commit f8bdceab38
5 changed files with 20 additions and 8 deletions

View file

@ -343,7 +343,7 @@ CCMD (dumpclasses)
}
TArray<DObject *> DObject::Objects (TArray<DObject *>::NoInit);
TArray<size_t> DObject::FreeIndices (TArray<size_t>::NoInit);
TArray<unsigned int> DObject::FreeIndices (TArray<unsigned int>::NoInit);
TArray<DObject *> DObject::ToDestroy (TArray<DObject *>::NoInit);
bool DObject::Inactive;