Update Translator.cs

This commit is contained in:
LDj3SNuD 2019-09-11 17:09:43 +02:00 committed by GitHub
parent cff5653990
commit 2b154b216a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ namespace ARMeilleure.Translation
_funcs = new Dictionary<ulong, TranslatedFunction>();
_funcsHighCq = new ConcurrentDictionary<ulong, TranslatedFunction>();
Aot.FullTranslate(_funcsHighCq);
Aot.FullTranslate(_funcsHighCq, memory.PageTable);
_backgroundQueue = new ConcurrentQueue<ulong>();
@ -300,4 +300,4 @@ namespace ARMeilleure.Translation
context.MarkLabel(lblExit);
}
}
}
}