Revert "misc: chore: Remove redundant code"

This reverts commit 05a88ccc94.
This commit is contained in:
KeatonTheBot 2025-03-15 20:00:22 -05:00
parent 7960ea643f
commit efd5a104b6
109 changed files with 412 additions and 271 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;
private Thread _tamperThread = null;
private readonly ConcurrentQueue<ITamperProgram> _programs = new();
private long _pressedKeys;
private long _pressedKeys = 0;
private readonly Dictionary<string, ITamperProgram> _programDictionary = new();
private void Activate()