mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-25 10:17:01 +00:00
Changed bool typedef from int to unsigned char.
This commit is contained in:
parent
544942cc64
commit
6ca8ba16fc
|
@ -10,7 +10,7 @@ extern "C" {
|
|||
|
||||
#include <stdint.h>
|
||||
#ifdef _MSC_VER
|
||||
typedef int bool;
|
||||
typedef unsigned char bool;
|
||||
#define false 0
|
||||
#define true 1
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue