location struct should use signed chars

This commit is contained in:
Sylae Corell
2014-07-30 13:55:08 -06:00
parent 3d1b4cbfa1
commit 7c4c71c8e7

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 {