From 1235246d1938f66dc436d1335c95457c597229ab Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 25 Jan 2015 19:21:50 +0000 Subject: [PATCH] Multitrack recording - support analog input --- .../movie/bk2/Bk2ControllerAdapter.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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; + } } ///