[Emulator] Removed legacy title re-launching code

This commit is contained in:
NicknineTheEagle
2024-06-16 10:16:10 +03:00
committed by Radosław Gliński
parent ec267c348a
commit c004d669c2
3 changed files with 1 additions and 24 deletions

View File

@@ -642,14 +642,7 @@ void EmulatorApp::EmulatorThread() {
// Now, we're going to use this thread to drive events related to emulation.
while (!emulator_thread_quit_requested_.load(std::memory_order_relaxed)) {
xe::threading::Wait(emulator_thread_event_.get(), false);
while (true) {
emulator_->WaitUntilExit();
if (emulator_->TitleRequested()) {
emulator_->LaunchNextTitle();
} else {
break;
}
}
emulator_->WaitUntilExit();
}
}