瀏覽代碼

android: Enable all controller styles on emulation shutdown

t895 2 年之前
父節點
當前提交
9a3fd76b25
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/android/app/src/main/jni/native.cpp

+ 3 - 0
src/android/app/src/main/jni/native.cpp

@@ -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();