location struct should use signed chars

This commit is contained in:
Sylae Corell
2014-07-30 13:55:08 -06:00
parent fd9ffa9f90
commit 746a63fa52

View File

@@ -53,7 +53,7 @@ typedef unsigned char BYTE;
typedef char Boolean;
typedef struct {
unsigned char x,y;
signed char x,y;
} location;
typedef struct {