shadPS4/src/common/debug.h

10 lines
171 B
C
Raw Normal View History

#pragma once
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