shithub: cstory

Download patch

ref: b1418f7fae9cdf8e5fb32f99af49e783bf9b0e9f
parent: f690f9907dd5f5ee7b49e6cfa157141321366e87
author: Clownacy <Clownacy@users.noreply.github.com>
date: Mon Oct 21 15:33:49 EDT 2019

Remove a leftover unsigned literal

--- a/src/NpChar.cpp
+++ b/src/NpChar.cpp
@@ -136,7 +136,7 @@
 
 	// 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;