We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1b5aed commit 33ba6f6Copy full SHA for 33ba6f6
Core/KeyMap.cpp
@@ -110,6 +110,12 @@ void UpdateNativeMenuKeys() {
110
cancelKeys.push_back(hardcodedCancelKeys[i]);
111
}
112
113
+ // For DInput controllers on Windows. Doesn't clash with XInput because that uses BUTTON_X etc.
114
+#if PPSSPP_PLATFORM(WINDOWS) && !PPSSPP_PLATFORM(UWP)
115
+ confirmKeys.push_back(InputMapping(DEVICE_ID_PAD_0, NKCODE_BUTTON_2));
116
+ cancelKeys.push_back(InputMapping(DEVICE_ID_PAD_0, NKCODE_BUTTON_3));
117
+#endif
118
+
119
SetDPadKeys(upKeys, downKeys, leftKeys, rightKeys);
120
SetConfirmCancelKeys(confirmKeys, cancelKeys);
121
SetTabLeftRightKeys(tabLeft, tabRight);
0 commit comments