diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs index db66dce95e..b549dd1f09 100755 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs @@ -49,9 +49,9 @@ namespace BizHawk.Client.Common public bool IsPressed(string button) => _myBoolButtons[button]; public int AxisValue(string name) => _myAxisControls[name]; - public IReadOnlyCollection<(string Name, int Strength)> GetHapticsSnapshot() => throw new NotImplementedException(); // no idea --yoshi + public IReadOnlyCollection<(string Name, int Strength)> GetHapticsSnapshot() => Array.Empty<(string, int)>(); - public void SetHapticChannelStrength(string name, int strength) => throw new NotImplementedException(); // no idea --yoshi + public void SetHapticChannelStrength(string name, int strength) {} public void SetFrom(IController source) {