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:
parent
03250d62a0
commit
486cf37161
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue