csgo-2018-source/common/ps3/ps3_assert.h
2021-07-24 21:11:47 -07:00

12 lines
354 B
C

// PS3 Assert : As of SDK 084, the PS3 assert found in assert.h will simply break execution
// by calling __abort: this will exit the application instead of breaking
// execution in the debugger.
#if defined(_PS3) && defined(_DEBUG)
#ifdef assert
#undef assert
#endif
#define assert(v)
//if(!(v)) { *(int*)0x1 = 0; }
#endif