DolphinWX: Fix a double truncation warning in InputConfigDiagBitmaps

This commit is contained in:
Lioncash 2014-07-21 20:52:56 -04:00
parent c3eb45f7bc
commit 8a7640f8b4
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ static void DrawControlGroupBox(wxDC &dc, ControlGroupBox *g)
if (g->control_group->name == "Main Stick") if (g->control_group->name == "Main Stick")
{ {
max = (87.0f / 127.0f) * 100; max = (87.0f / 127.0f) * 100;
diagonal = (55.0f / 127.0f) * 100.0; diagonal = (55.0f / 127.0f) * 100;
} }
else if (g->control_group->name == "C-Stick") else if (g->control_group->name == "C-Stick")
{ {