Mark a char as signed

Might revert, not sure. I'm just doing this for consistency with
other bits of code.
This commit is contained in:
Clownacy 2020-05-03 20:37:43 +01:00
parent 03250d62a0
commit 486cf37161
2 changed files with 2 additions and 2 deletions

View file

@ -210,7 +210,7 @@ int MiniMapLoop(void)
return enum_ESCRETURN_continue; return enum_ESCRETURN_continue;
} }
char gMapping[0x80]; signed char gMapping[0x80];
BOOL IsMapping(void) BOOL IsMapping(void)
{ {

View file

@ -2,7 +2,7 @@
#include "WindowsWrapper.h" #include "WindowsWrapper.h"
extern char gMapping[0x80]; extern signed char gMapping[0x80];
int MiniMapLoop(void); int MiniMapLoop(void);
BOOL IsMapping(void); BOOL IsMapping(void);