diff --git a/src/NpChar.h b/src/NpChar.h index 7fb14295..53a6e83b 100644 --- a/src/NpChar.h +++ b/src/NpChar.h @@ -17,13 +17,13 @@ #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) \ npc->rect = rcLeft[npc->ani_no]; \ else \ - npc->rect = rcRight[npc->ani_no]; + npc->rect = rcRight[npc->ani_no] // Be careful when changing these: they're baked into the 'npc.tbl' file enum NPCFlags