mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #660 from lioncash/warning
DolphinWX: Fix a double truncation warning in InputConfigDiagBitmaps
This commit is contained in:
commit
5c4e5e9f8a
@ -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")
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user