UI: setting: Disable Input when Out of Focus

This commit is contained in:
Evan Husted 2025-02-11 22:12:05 -06:00
parent 8aecccadb8
commit 501b199e24
10 changed files with 92 additions and 4 deletions

View file

@ -185,6 +185,15 @@ namespace Ryujinx.Input.HLE
}
}
public bool InputUpdatesBlocked
{
get
{
lock (_lock)
return _blockInputUpdates;
}
}
public void BlockInputUpdates()
{
lock (_lock)