mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-22 15:45:42 +01:00
Merge pull request #11507 from t895/emulation-stop-fix
android: Return the correct status code on emulation stop
This commit is contained in:
commit
958bed4545
@ -327,12 +327,13 @@ public:
|
|||||||
m_system.ShutdownMainProcess();
|
m_system.ShutdownMainProcess();
|
||||||
m_detached_tasks.WaitForAllTasks();
|
m_detached_tasks.WaitForAllTasks();
|
||||||
m_load_result = Core::SystemResultStatus::ErrorNotInitialized;
|
m_load_result = Core::SystemResultStatus::ErrorNotInitialized;
|
||||||
|
m_window.reset();
|
||||||
|
OnEmulationStopped(Core::SystemResultStatus::Success);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tear down the render window.
|
// Tear down the render window.
|
||||||
m_window.reset();
|
m_window.reset();
|
||||||
|
|
||||||
OnEmulationStopped(m_load_result);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void PauseEmulation() {
|
void PauseEmulation() {
|
||||||
|
Loading…
Reference in New Issue
Block a user