put dummy implementations for haptics in bk2 controller, fixes #3146

This commit is contained in:
CasualPokePlayer 2022-02-16 03:50:35 -08:00
parent e8e58f799e
commit 63078b55e1
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{