LIBRETRO: move retroQuit in close_emu_thread loop

This commit is contained in:
Giovanni Cascione 2023-05-10 14:30:06 +02:00
parent bf7938991d
commit 20ce78d889

@ -371,9 +371,10 @@ static void exit_to_frontend(void) {
}
static void close_emu_thread(void) {
retroQuit();
while (!retro_emu_thread_exited())
while (!retro_emu_thread_exited()) {
retroQuit();
retro_switch_to_emu_thread();
}
retro_deinit_emu_thread();
}