shadPS4/src/debug.h
2023-08-03 13:43:42 +03:00

7 lines
No EOL
156 B
C

#ifdef _MSC_VER
#define BREAKPOINT __debugbreak
#elif defined(__GNUC__)
#define BREAKPOINT __builtin_trap
#else
#error What the fuck is this compiler
#endif