Skip to content

Commit

Permalink
PAD: Fix negon and jogcon BPM crash
Browse files Browse the repository at this point in the history
  • Loading branch information
F0bes committed Oct 29, 2024
1 parent 74645aa commit eea1d57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pcsx2/ImGui/FullscreenUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4391,7 +4391,8 @@ void FullscreenUI::DrawControllerSettingsPage()
StartAutomaticBinding(global_slot);

for (const InputBindingInfo& bi : ci->bindings)
DrawInputBindingButton(bsi, bi.bind_type, section, bi.name, Host::TranslateToCString("Pad", bi.display_name), bi.icon_name, true);
if (bi.name) [[likely]]
DrawInputBindingButton(bsi, bi.bind_type, section, bi.name, Host::TranslateToCString("Pad", bi.display_name), bi.icon_name, true);

if (mtap_enabled[mtap_port])
{
Expand Down

0 comments on commit eea1d57

Please sign in to comment.