Simplify logic in OverrideAdapter

This commit is contained in:
Morilli 2024-03-26 19:10:22 +01:00
parent 45159091e6
commit d498f8c3be
1 changed files with 2 additions and 2 deletions

View File

@ -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;