ソースを参照

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");

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