android: Enable all controller styles on emulation shutdown

This commit is contained in:
t895 2024-02-21 08:13:54 -05:00
parent 7b5bdd076d
commit 9a3fd76b25
1 changed files with 3 additions and 0 deletions

View File

@ -292,6 +292,9 @@ void EmulationSession::ShutdownEmulation() {
// Unload user input.
m_system.HIDCore().UnloadInputDevices();
// Enable all controllers
m_system.HIDCore().SetSupportedStyleTag({Core::HID::NpadStyleSet::All});
// Shutdown the main emulated process
if (m_load_result == Core::SystemResultStatus::Success) {
m_system.DetachDebugger();