Changed erroneous "=" to "+="

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2019-09-15 16:00:06 +02:00
parent 58a02a609c
commit 002e0f7760
No known key found for this signature in database
GPG key ID: 1E75F156884F3DCE

View file

@ -17,7 +17,7 @@
#define NPC_UPDATE_POSITIONS_WITH_VELOCITIES(npc) \
npc->x += npc->xm; \
npc->y = npc->ym
npc->y += npc->ym
#define NPC_SET_RECT_FROM_LEFT_RIGHT(npc, rcLeft, rcRight) \
if (npc->direct == DIR_LEFT) \