Use a sizeof instead of this raw value

This commit is contained in:
Clownacy 2019-10-12 16:54:58 +00:00
parent 869bff3da1
commit 709065d716

View file

@ -216,7 +216,7 @@ BOOL IsMapping()
void StartMapping()
{
memset(gMapping, FALSE, 0x80);
memset(gMapping, FALSE, sizeof(gMapping));
}
void SetMapping(int a)