Remove a leftover unsigned literal
This commit is contained in:
parent
f690f9907d
commit
b1418f7fae
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ void SetNpChar(int code_char, int x, int y, int xm, int ym, int dir, NPCHAR *npc
|
||||||
|
|
||||||
// Set NPC parameters
|
// Set NPC parameters
|
||||||
memset(&gNPC[n], 0, sizeof(NPCHAR));
|
memset(&gNPC[n], 0, sizeof(NPCHAR));
|
||||||
gNPC[n].cond |= 0x80u;
|
gNPC[n].cond |= 0x80;
|
||||||
gNPC[n].direct = dir;
|
gNPC[n].direct = dir;
|
||||||
gNPC[n].code_char = code_char;
|
gNPC[n].code_char = code_char;
|
||||||
gNPC[n].x = x;
|
gNPC[n].x = x;
|
||||||
|
|
Loading…
Add table
Reference in a new issue