mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-16 07:30:32 +00:00
Address formatting feedback
This commit is contained in:
parent
1fd547aba4
commit
cf74740f82
2 changed files with 11 additions and 3 deletions
|
@ -405,7 +405,16 @@ namespace Ryujinx.HLE.Loaders.Processes
|
||||||
// Once everything is loaded, we can load cheats.
|
// Once everything is loaded, we can load cheats.
|
||||||
device.Configuration.VirtualFileSystem.ModLoader.LoadCheats(programId, tamperInfo, device.TamperMachine);
|
device.Configuration.VirtualFileSystem.ModLoader.LoadCheats(programId, tamperInfo, device.TamperMachine);
|
||||||
|
|
||||||
return new ProcessResult(metaLoader, applicationControlProperties, diskCacheEnabled, allowCodeMemoryForJit, processContextFactory.DiskCacheLoadState, process.Pid, meta.MainThreadPriority, meta.MainThreadStackSize, device.System.State.DesiredTitleLanguage);
|
return new ProcessResult(
|
||||||
|
metaLoader,
|
||||||
|
applicationControlProperties,
|
||||||
|
diskCacheEnabled,
|
||||||
|
allowCodeMemoryForJit,
|
||||||
|
processContextFactory.DiskCacheLoadState,
|
||||||
|
process.Pid,
|
||||||
|
meta.MainThreadPriority,
|
||||||
|
meta.MainThreadStackSize,
|
||||||
|
device.System.State.DesiredTitleLanguage);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Result LoadIntoMemory(KProcess process, IExecutable image, ulong baseAddress)
|
public static Result LoadIntoMemory(KProcess process, IExecutable image, ulong baseAddress)
|
||||||
|
|
|
@ -37,8 +37,7 @@ namespace Ryujinx.HLE.Loaders.Processes
|
||||||
ulong pid,
|
ulong pid,
|
||||||
byte mainThreadPriority,
|
byte mainThreadPriority,
|
||||||
uint mainThreadStackSize,
|
uint mainThreadStackSize,
|
||||||
TitleLanguage titleLanguage
|
TitleLanguage titleLanguage)
|
||||||
)
|
|
||||||
{
|
{
|
||||||
_mainThreadPriority = mainThreadPriority;
|
_mainThreadPriority = mainThreadPriority;
|
||||||
_mainThreadStackSize = mainThreadStackSize;
|
_mainThreadStackSize = mainThreadStackSize;
|
||||||
|
|
Loading…
Reference in a new issue