mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 07:35:41 +00:00
ImGuiOverlays: Fix >1 controller display
This commit is contained in:
parent
1fbb848c52
commit
d80aa91d49
|
@ -629,9 +629,9 @@ void ImGuiManager::DrawInputsOverlay()
|
|||
continue;
|
||||
|
||||
if (cinfo->icon_name)
|
||||
text.append_format("{} {}", cinfo->icon_name, port + 1u);
|
||||
text.format("{} {}", cinfo->icon_name, port + 1u);
|
||||
else
|
||||
text.append_format("{} |", port + 1u);
|
||||
text.format("{} |", port + 1u);
|
||||
|
||||
for (const Controller::ControllerBindingInfo& bi : cinfo->bindings)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue