From c21df3b7f0920e9acba831be6dad7d0445799938 Mon Sep 17 00:00:00 2001 From: Florin9doi Date: Mon, 26 Dec 2022 02:30:15 +0200 Subject: [PATCH] Pad: DInput: Fix incorrect Dpad labels --- pcsx2/Frontend/DInputSource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Frontend/DInputSource.cpp b/pcsx2/Frontend/DInputSource.cpp index 1233b85449..d045a05c15 100644 --- a/pcsx2/Frontend/DInputSource.cpp +++ b/pcsx2/Frontend/DInputSource.cpp @@ -65,7 +65,7 @@ std::string DInputSource::GetDeviceIdentifier(u32 index) return fmt::format("DInput-{}", index); } -static constexpr std::array s_hat_directions = {{"Up", "Right", "Down", "Left"}}; +static constexpr std::array s_hat_directions = {{"Up", "Down", "Left", "Right"}}; bool DInputSource::Initialize(SettingsInterface& si, std::unique_lock& settings_lock) {