소스 검색

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;
}



불러오는 중...
취소
저장