diff --git a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs index 0250d705bf..fbe23463a5 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs @@ -106,6 +106,24 @@ namespace BizHawk.Client.Common var val = playerSource[button]; MyBoolButtons[button] = val; } + + foreach (var button in Type.FloatControls) + { + var bnp = ButtonNameParser.Parse(button); + if (bnp == null) + { + continue; + } + + if (bnp.PlayerNum != playerNum) + { + continue; + } + + var val = playerSource.GetFloat(button); + + MyFloatControls[button] = val; + } } ///