Browse Source

Updated FixPlrWalkTags to match assert strings

pull/4/head
Dennis Duda 8 years ago
parent
commit
ed4e9c6d15
  1. 2
      Source/player.cpp

2
Source/player.cpp

@ -1552,7 +1552,7 @@ void __fastcall FixPlrWalkTags(int pnum)
}
int pNext = pnum + 1;
int pPrev = -1 - pnum;
int pPrev = -(pnum + 1);
int dx = plr[pnum]._poldx;
int dy = plr[pnum]._poldy;
for ( int y = dy - 1; y <= dy + 1; y++ ) {

Loading…
Cancel
Save