Fix for hanging on quit

This commit is contained in:
Devine Lu Linvega 2022-05-31 12:25:25 -07:00
parent 79262774fe
commit 56d08285b7
1 changed files with 1 additions and 6 deletions

View File

@ -511,12 +511,7 @@ main(int argc, char **argv)
if(!loaded && !start(&u, "launcher.rom"))
return error("usage", "uxnemu [-s scale] file.rom");
run(&u);
#ifdef _WIN32
#pragma GCC diagnostic ignored "-Wint-to-pointer-cast"
TerminateThread((HANDLE)SDL_GetThreadID(stdin_thread), 0);
#else
close(0); /* make stdin thread exit */
#endif
SDL_WaitThread(stdin_thread, NULL);
SDL_Quit();
return 0;
}