Southwards animation wasn't flipping correctly due to typo.

This commit is contained in:
stevenhowes
2021-05-16 15:22:22 +01:00
parent dac1add9b8
commit 3d69e6d38e
2 changed files with 1 additions and 1 deletions
Binary file not shown.
+1 -1
View File
@@ -574,7 +574,7 @@ int game2_tick()
}
else
{
if((TilePlayer.facedirection & (1 << DIRECTION_N)) || (TilePlayer.facedirection & (1 << DIRECTION_N)))
if((TilePlayer.facedirection & (1 << DIRECTION_N)) || (TilePlayer.facedirection & (1 << DIRECTION_S)))
flipv = 1;
if((TilePlayer.facedirection & (1 << DIRECTION_E)) || (TilePlayer.facedirection & (1 << DIRECTION_W)))
fliph = 1;