misc: chore: Use explicit types in input projects

This commit is contained in:
Evan Husted
2025-01-25 14:09:05 -06:00
parent 1712d69dcd
commit ac401034d7
8 changed files with 20 additions and 18 deletions

View File

@@ -144,7 +144,7 @@ namespace Ryujinx.Input.Assigner
{
StringWriter writer = new();
foreach (var kvp in _stats)
foreach (KeyValuePair<GamepadButtonInputId, InputSummary> kvp in _stats)
{
writer.WriteLine($"Button {kvp.Key} -> {kvp.Value}");
}