Changeset 1675


Ignore:
Timestamp:
Jul 27, 2012, 6:53:51 PM (11 years ago)
Author:
sam
Message:

core: the IO thread tweak needn't be PS3-specific.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ticker.cpp

    r1637 r1675  
    315315void *TickerData::DiskThreadMain(void * /* p */)
    316316{
    317 #if defined __CELLOS_LV2__
    318     /* FIXME: temporary hack to avoid crashes */
     317    /* FIXME: temporary hack to avoid crashes on the PS3 */
    319318    Timer t;
    320319    for (;;)
    321320    {
    322321        t.Get();
    323         t.Wait(0.001f);
    324     }
    325 #endif
     322        t.Wait(0.01f);
     323    }
     324
    326325    return NULL;
    327326}
Note: See TracChangeset for help on using the changeset viewer.