Burn troublesome debugging code with fire.

This wasn't doing anything on any platform, even in debug mode, it was
just in upstream in case someone wanted to debug xbrz.

Removing it, will have to remember to remove again when syncing upstream.
It makes Linux still break and does not help cross-compat.
This commit is contained in:
Unknown W. Brackets 2015-01-19 19:06:32 -08:00
parent 19b92a3e68
commit 5065570c1b

View File

@ -609,20 +609,6 @@ void scalePixel(const Kernel_3x3& ker,
#define h get_h<rotDeg>(ker)
#define i get_i<rotDeg>(ker)
#ifdef _DEBUG
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);
if (getBottomR(blend) >= BLEND_NORMAL)