Merge branch 'master' into master

This commit is contained in:
Evan Husted
2025-02-14 00:45:06 -06:00
committed by GitHub
74 changed files with 3488 additions and 1125 deletions

View File

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