소스 검색

Corrected issue with input threads (RPI)

pull/892/head
Ray 5 년 전
부모
커밋
721d18589f
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      src/core.c

+ 3
- 2
src/core.c 파일 보기

@ -765,12 +765,13 @@ void CloseWindow(void)
for (int i = 0; i < sizeof(eventWorkers)/sizeof(InputEventWorker); ++i)
{
if (eventWorkers[i].threadId == 0)
if (eventWorkers[i].threadId)
{
pthread_join(eventWorkers[i].threadId, NULL);
}
}
pthread_join(gamepadThreadId, NULL);
if (gamepadThreadId) pthread_join(gamepadThreadId, NULL);
#endif
TraceLog(LOG_INFO, "Window closed successfully");

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