Skip to content

Commit 33ba6f6

Browse files
committed
Fix for menu navigation with DInput controllers on Windows. Bit of a hack.
1 parent c1b5aed commit 33ba6f6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Core/KeyMap.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,12 @@ void UpdateNativeMenuKeys() {
110110
cancelKeys.push_back(hardcodedCancelKeys[i]);
111111
}
112112

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+
113119
SetDPadKeys(upKeys, downKeys, leftKeys, rightKeys);
114120
SetConfirmCancelKeys(confirmKeys, cancelKeys);
115121
SetTabLeftRightKeys(tabLeft, tabRight);

0 commit comments

Comments
 (0)