From 746a63fa522185c78986209f6b372159916335c8 Mon Sep 17 00:00:00 2001 From: Sylae Corell Date: Wed, 30 Jul 2014 13:55:08 -0600 Subject: [PATCH] location struct should use signed chars --- scenedit/global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenedit/global.h b/scenedit/global.h index c4c94d4b..8d7eff68 100644 --- a/scenedit/global.h +++ b/scenedit/global.h @@ -53,7 +53,7 @@ typedef unsigned char BYTE; typedef char Boolean; typedef struct { - unsigned char x,y; + signed char x,y; } location; typedef struct {