mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-24 10:53:11 +00:00
Fix debug build on mac
This commit is contained in:
parent
3b28db951d
commit
a346b70341
@ -610,14 +610,17 @@ void scalePixel(const Kernel_3x3& ker,
|
||||
#define i get_i<rotDeg>(ker)
|
||||
|
||||
#ifdef _DEBUG
|
||||
if (breakIntoDebugger)
|
||||
if (breakIntoDebugger) {
|
||||
#if defined(IOS)
|
||||
__asm__("trap");
|
||||
#elif defined(MIPS)
|
||||
__asm__("break 2");
|
||||
#elif defined(__APPLE__)
|
||||
// meh
|
||||
#else
|
||||
__debugbreak(); //__asm int 3;
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
const unsigned char blend = rotateBlendInfo<rotDeg>(blendInfo);
|
||||
|
Loading…
x
Reference in New Issue
Block a user