I may be stupid

This commit is contained in:
Evan Husted 2024-10-27 14:09:17 -05:00
parent dd84782921
commit df7e543877

View File

@ -24,11 +24,11 @@ namespace Ryujinx.Cpu.LightningJit
private bool _disposed;
internal TranslatorCache<TranslatedFunction> Functions { get; }
internal IAddressTable<ulong> FunctionTable { get; }
internal AddressTable<ulong> FunctionTable { get; }
internal TranslatorStubs Stubs { get; }
internal IMemoryManager Memory { get; }
public Translator(IMemoryManager memory, IAddressTable<ulong> functionTable)
public Translator(IMemoryManager memory, AddressTable<ulong> functionTable)
{
Memory = memory;