- 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:
parent
6c21616c85
commit
b2176a4a33
4 changed files with 10 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue