diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-01-18 14:17:38 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-18 14:17:38 -0300 |
| commit | 870d9599cc056e515dd63620fd10bf9fee4992ee (patch) | |
| tree | 419862e34e111e69c6bf5acdfb96f026e75c8729 /src/Ryujinx.Tests/Cpu | |
| parent | 2dbbc9bc05998baa94d7b1953d9e0ffc7f1651f8 (diff) | |
Change shader cache init wait method (#6131)
* Change shader cache init wait method
* Make field readonly
Diffstat (limited to 'src/Ryujinx.Tests/Cpu')
| -rw-r--r-- | src/Ryujinx.Tests/Cpu/CpuTest.cs | 1 | ||||
| -rw-r--r-- | src/Ryujinx.Tests/Cpu/CpuTest32.cs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/Ryujinx.Tests/Cpu/CpuTest.cs b/src/Ryujinx.Tests/Cpu/CpuTest.cs index 35158c0b..da0f03e6 100644 --- a/src/Ryujinx.Tests/Cpu/CpuTest.cs +++ b/src/Ryujinx.Tests/Cpu/CpuTest.cs @@ -61,7 +61,6 @@ namespace Ryujinx.Tests.Cpu _memory.Map(DataBaseAddress, Size, Size, MemoryMapFlags.Private); _context = CpuContext.CreateExecutionContext(); - Translator.IsReadyForTranslation.Set(); _cpuContext = new CpuContext(_memory, for64Bit: true); diff --git a/src/Ryujinx.Tests/Cpu/CpuTest32.cs b/src/Ryujinx.Tests/Cpu/CpuTest32.cs index f5eb94fa..6a690834 100644 --- a/src/Ryujinx.Tests/Cpu/CpuTest32.cs +++ b/src/Ryujinx.Tests/Cpu/CpuTest32.cs @@ -56,7 +56,6 @@ namespace Ryujinx.Tests.Cpu _context = CpuContext.CreateExecutionContext(); _context.IsAarch32 = true; - Translator.IsReadyForTranslation.Set(); _cpuContext = new CpuContext(_memory, for64Bit: false); |
