You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
354 B
11 lines
354 B
// 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
|