shadPS4/src/debug.h

7 lines
156 B
C
Raw Normal View History

2023-08-03 12:43:42 +02:00
#ifdef _MSC_VER
#define BREAKPOINT __debugbreak
#elif defined(__GNUC__)
#define BREAKPOINT __builtin_trap
#else
#error What the fuck is this compiler
#endif