Remove a leftover unsigned literal

This commit is contained in:
Clownacy 2019-10-21 19:33:49 +01:00
parent f690f9907d
commit b1418f7fae

View file

@ -136,7 +136,7 @@ void SetNpChar(int code_char, int x, int y, int xm, int ym, int dir, NPCHAR *npc
// Set NPC parameters
memset(&gNPC[n], 0, sizeof(NPCHAR));
gNPC[n].cond |= 0x80u;
gNPC[n].cond |= 0x80;
gNPC[n].direct = dir;
gNPC[n].code_char = code_char;
gNPC[n].x = x;