misc: chore: Remove redundant code

This commit is contained in:
KeatonTheBot 2025-03-11 01:40:13 -05:00
parent 340ec79e9f
commit 05a88ccc94
109 changed files with 271 additions and 412 deletions

View file

@ -16,9 +16,9 @@ namespace Ryujinx.HLE.HOS
// cheat and the re-execution of the first one.
private const int TamperMachineSleepMs = 1000 / 12;
private Thread _tamperThread = null;
private Thread _tamperThread;
private readonly ConcurrentQueue<ITamperProgram> _programs = new();
private long _pressedKeys = 0;
private long _pressedKeys;
private readonly Dictionary<string, ITamperProgram> _programDictionary = new();
private void Activate()