mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 13:55:38 +00:00
AnalogController: Fix incorrect locked message format
This commit is contained in:
parent
c66ae535ca
commit
c8e7922c1a
|
@ -312,8 +312,8 @@ void AnalogController::ProcessAnalogModeToggle()
|
|||
Host::AddIconOSDMessage(
|
||||
fmt::format("Controller{}AnalogMode", m_index), ICON_FA_GAMEPAD,
|
||||
fmt::format((m_analog_mode ?
|
||||
Host::TranslateString("AnalogController", "Controller %u is locked to analog mode by the game.") :
|
||||
Host::TranslateString("AnalogController", "Controller %u is locked to digital mode by the game."))
|
||||
Host::TranslateString("AnalogController", "Controller {} is locked to analog mode by the game.") :
|
||||
Host::TranslateString("AnalogController", "Controller {} is locked to digital mode by the game."))
|
||||
.GetCharArray(),
|
||||
m_index + 1u),
|
||||
5.0f);
|
||||
|
|
Loading…
Reference in a new issue