Fix due to #784.
This commit is contained in:
parent
bfa17381da
commit
d94caca674
2 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ namespace ARMeilleure.Translation.AOT
|
||||||
_disposed = false;
|
_disposed = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Init(string titleId, bool enabled, bool readOnlyMode = false)
|
public static void Init(string titleId, bool enabled = true, bool readOnlyMode = false)
|
||||||
{
|
{
|
||||||
if (!String.IsNullOrEmpty(titleId))
|
if (!String.IsNullOrEmpty(titleId))
|
||||||
{
|
{
|
||||||
|
|
|
@ -569,7 +569,7 @@ namespace Ryujinx.HLE.HOS
|
||||||
|
|
||||||
Logger.PrintInfo(LogClass.Loader, "AOT Init...");
|
Logger.PrintInfo(LogClass.Loader, "AOT Init...");
|
||||||
|
|
||||||
Aot.Init(TitleID, !UseLegacyJit);
|
Aot.Init(TitleID);
|
||||||
|
|
||||||
ProgramLoader.LoadStaticObjects(this, metaData, staticObjects.ToArray());
|
ProgramLoader.LoadStaticObjects(this, metaData, staticObjects.ToArray());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue