Simplify logic in OverrideAdapter
This commit is contained in:
parent
45159091e6
commit
d498f8c3be
|
@ -30,9 +30,9 @@ namespace BizHawk.Client.Common
|
|||
|
||||
public void SetHapticChannelStrength(string name, int strength) => throw new NotImplementedException(); // no idea --yoshi
|
||||
|
||||
public IEnumerable<string> Overrides => _overrides.Select(kvp => kvp.Key);
|
||||
public IEnumerable<string> Overrides => _overrides.Keys;
|
||||
|
||||
public IEnumerable<string> AxisOverrides => _axisOverrides.Select(kvp => kvp.Key);
|
||||
public IEnumerable<string> AxisOverrides => _axisOverrides.Keys;
|
||||
|
||||
public IEnumerable<string> InversedButtons => _inverses;
|
||||
|
||||
|
|
Loading…
Reference in New Issue