shadPS4/src/common/debug.h
2023-11-05 13:41:26 +02:00

7 lines
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