Ignore:
Timestamp:
Apr 24, 2012, 8:17:48 PM (11 years ago)
Author:
sam
Message:

debug: do not use std::abort() on the PS3.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lol/debug.h

    r1240 r1290  
    2424static inline void Abort()
    2525{
     26#if defined __CELLOS_LV2__
     27    *(uint32_t *)NULL = 0;
     28#else
    2629    std::abort();
     30#endif
    2731}
    2832
Note: See TracChangeset for help on using the changeset viewer.