From b1418f7fae9cdf8e5fb32f99af49e783bf9b0e9f Mon Sep 17 00:00:00 2001 From: Clownacy Date: Mon, 21 Oct 2019 19:33:49 +0100 Subject: [PATCH] Remove a leftover unsigned literal --- src/NpChar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NpChar.cpp b/src/NpChar.cpp index 846dc54c..9e50f2b3 100644 --- a/src/NpChar.cpp +++ b/src/NpChar.cpp @@ -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;