diff --git a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs index 42e1e6ccbd..b6023c297c 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs @@ -36,14 +36,10 @@ namespace BizHawk.Client.Common } } - // TODO: get rid of this, add a SetBool() method or something for the set access, replace get wtih IsPressed + // TODO: get rid of this, add a SetBool() method or something for the set access, replace get with IsPressed public bool this[string button] { - get - { - return _myBoolButtons[button]; - } - + get => _myBoolButtons[button]; set { if (_myBoolButtons.ContainsKey(button))