chore: [si skip] fix in-code typos

This commit is contained in:
GreemDev
2025-10-20 21:32:07 -05:00
parent 7d65611b96
commit ed67535227
2 changed files with 12 additions and 12 deletions

View File

@@ -59,18 +59,18 @@ namespace Ryujinx.HLE.UI.Input
}
}
public void Update(bool supressEvents = false)
public void Update(bool suppressEvents = false)
{
int npadsCount = _device.Hid.SharedMemory.Npads.Length;
// Process each input individually.
for (int npadIndex = 0; npadIndex < npadsCount; npadIndex++)
{
UpdateNpad(npadIndex, supressEvents);
UpdateNpad(npadIndex, suppressEvents);
}
}
private void UpdateNpad(int npadIndex, bool supressEvents)
private void UpdateNpad(int npadIndex, bool suppressEvents)
{
const int MaxEntries = 1024;
@@ -103,7 +103,7 @@ namespace Ryujinx.HLE.UI.Input
break;
}
if (!supressEvents)
if (!suppressEvents)
{
ProcessNpadButtons(npadIndex, entry.Object.Buttons);
}