Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #660 from lioncash/warning
DolphinWX: Fix a double truncation warning in InputConfigDiagBitmaps
  • Loading branch information
neobrain committed Jul 25, 2014
2 parents 4189703 + 8a7640f commit 5c4e5e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/InputConfigDiagBitmaps.cpp
Expand Up @@ -112,7 +112,7 @@ static void DrawControlGroupBox(wxDC &dc, ControlGroupBox *g)
if (g->control_group->name == "Main Stick")
{
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")
{
Expand Down

0 comments on commit 5c4e5e9

Please sign in to comment.