Counter Strike : Global Offensive Source Code
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

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