Pad: DInput: Fix incorrect Dpad labels

This commit is contained in:
Florin9doi 2022-12-26 02:30:15 +02:00 committed by refractionpcsx2
parent a8faf2eb6e
commit c21df3b7f0
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ std::string DInputSource::GetDeviceIdentifier(u32 index)
return fmt::format("DInput-{}", index);
}
static constexpr std::array<const char*, DInputSource::NUM_HAT_DIRECTIONS> s_hat_directions = {{"Up", "Right", "Down", "Left"}};
static constexpr std::array<const char*, DInputSource::NUM_HAT_DIRECTIONS> s_hat_directions = {{"Up", "Down", "Left", "Right"}};
bool DInputSource::Initialize(SettingsInterface& si, std::unique_lock<std::mutex>& settings_lock)
{