- Fixed: SPAC_AnyCross didn't work.

- Fixed: Pushable doors must also check for SPAC_MPush.
- Fixed: P_LoadThings2 did not adjust the byte order for the thingid field.


SVN r965 (trunk)
This commit is contained in:
Christoph Oelckers 2008-05-12 08:31:29 +00:00
commit b2176a4a33
4 changed files with 10 additions and 5 deletions

View file

@ -1441,7 +1441,7 @@ void P_LoadThings2 (MapData * map, int position)
for(int i = 0; i< numthings; i++)
{
mti[i].thingid = mth[i].thingid;
mti[i].thingid = LittleShort(mth[i].thingid);
mti[i].x = LittleShort(mth[i].x)<<FRACBITS;
mti[i].y = LittleShort(mth[i].y)<<FRACBITS;
mti[i].z = LittleShort(mth[i].z)<<FRACBITS;