(Libretro) Update to libretro header file - for when compiling in

C89 mode in MSVC 360
This commit is contained in:
TwinAphex51224 2012-04-15 15:00:26 +02:00
parent dee9b69661
commit 7271f61da0

View File

@ -6,6 +6,10 @@
#ifdef __cplusplus
extern "C" {
#elif defined(_MSC_VER)
typedef unsigned char bool;
typedef enum {false, true};
#else
#else
#include <stdbool.h>
#endif