Changed bool typedef from int to unsigned char.

This commit is contained in:
xorstream 2016-05-10 23:53:39 +10:00
parent 544942cc64
commit 6ca8ba16fc

View file

@ -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