ソースを参照

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

legacy
Sam Hocevar sam 12年前
コミット
b4b2019efc
1個のファイルの変更3行の追加4行の削除
  1. +3
    -4
      src/ticker.cpp

+ 3
- 4
src/ticker.cpp ファイルの表示

@@ -314,15 +314,14 @@ void *TickerData::DrawThreadMain(void * /* p */)

void *TickerData::DiskThreadMain(void * /* p */)
{
#if defined __CELLOS_LV2__
/* FIXME: temporary hack to avoid crashes */
/* FIXME: temporary hack to avoid crashes on the PS3 */
Timer t;
for (;;)
{
t.Get();
t.Wait(0.001f);
t.Wait(0.01f);
}
#endif
return NULL;
}



読み込み中…
キャンセル
保存