mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-19 03:35:46 +00:00
chore: [si skip] fix in-code typos
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user