Merge pull request #197 from archshift/no-comprende

PrecompiledHeader.h: Add a comment to clarify redefinition of BOOL
This commit is contained in:
ramapcsx2 2014-08-06 13:19:24 +02:00
commit 98aad6ef76
1 changed files with 5 additions and 3 deletions

View File

@ -58,10 +58,12 @@
using std::min;
using std::max;
typedef int BOOL;
#undef TRUE
#undef FALSE
// As plugins which use C have to be used with PCSX2, the BOOL type is redefined
// to prevent any C/C++ compatibility issues.
typedef int BOOL;
#undef TRUE
#undef FALSE
#define TRUE 1
#define FALSE 0