mirror of https://github.com/PCSX2/pcsx2.git
Added comment explaining redefinition of BOOL
This commit is contained in:
parent
c911ba4747
commit
730d7ec528
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue