Update Translator.cs
This commit is contained in:
parent
02cd5d3e70
commit
ab87872574
1 changed files with 4 additions and 1 deletions
|
@ -42,7 +42,10 @@ namespace ARMeilleure.Translation
|
|||
_funcs = new Dictionary<ulong, TranslatedFunction>();
|
||||
_funcsHighCq = new ConcurrentDictionary<ulong, TranslatedFunction>();
|
||||
|
||||
Aot.FullTranslate(_funcsHighCq, memory.PageTable);
|
||||
if (Aot.Enabled)
|
||||
{
|
||||
Aot.FullTranslate(_funcsHighCq, memory.PageTable);
|
||||
}
|
||||
|
||||
_backgroundQueue = new ConcurrentQueue<ulong>();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue