Lua - fix movie.getinput() to return float values instead of passing "False" no matter what

This commit is contained in:
adelikat 2016-12-14 13:22:01 -06:00
parent a955e6a3a2
commit e94de78ebd
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ namespace BizHawk.Client.Common
foreach (var button in adapter.Definition.FloatControls)
{
input[button] = adapter[button];
input[button] = adapter.GetFloat(button);
}
return input;