Browse Source

Fix warning about not handling enumeration value 'None'

pull/7852/head
staphen 1 year ago committed by Anders Jenbo
parent
commit
8526f2e8f6
  1. 2
      Source/control.cpp

2
Source/control.cpp

@ -1458,6 +1458,8 @@ void DrawDeathText(const Surface &out)
case ControlTypes::VirtualGamepad:
buttonText = _("Menu Button");
break;
default:
break;
}
if (!gbIsMultiplayer) {

Loading…
Cancel
Save