Compare commits

...

1 Commits

Author SHA1 Message Date
Narr the Reg
a0d6289582 android: unload hid after shutdown 2023-11-23 13:32:30 -05:00

View File

@@ -316,8 +316,10 @@ void EmulationSession::ShutdownEmulation() {
m_is_running = false;
// Unload user input.
m_system.HIDCore().UnloadInputDevices();
SCOPE_EXIT({
// Unload user input.
m_system.HIDCore().UnloadInputDevices();
});
// Shutdown the main emulated process
if (m_load_result == Core::SystemResultStatus::Success) {