- 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:
parent
2b91f31d86
commit
f8bdceab38
5 changed files with 20 additions and 8 deletions
|
|
@ -496,7 +496,7 @@ static void AM_ClipRotatedExtents ()
|
|||
{
|
||||
fixed_t rmin_x, rmin_y, rmax_x, rmax_y;
|
||||
|
||||
if (am_rotate == 1 || (am_rotate == 2 && viewactive))
|
||||
if (am_rotate == 0 || (am_rotate == 2 && !viewactive))
|
||||
{
|
||||
rmin_x = min_x;
|
||||
rmin_y = min_y;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue