Implement update loader and log loaded application info (#1023)
* Implement update loader * Add title version to titlebar and log loaded application info * nits * requested changes
This commit is contained in:
parent
6052aa17f2
commit
ad3d2fb5a9
12 changed files with 605 additions and 39 deletions
|
@ -126,14 +126,9 @@ namespace Ryujinx.HLE.HOS
|
|||
IExecutable[] staticObjects,
|
||||
byte[] arguments = null)
|
||||
{
|
||||
if (!metaData.Is64Bits)
|
||||
{
|
||||
Logger.PrintWarning(LogClass.Loader, "32-bits application detected.");
|
||||
}
|
||||
|
||||
ulong argsStart = 0;
|
||||
int argsSize = 0;
|
||||
ulong codeStart = metaData.Is64Bits ? 0x8000000UL : 0x200000UL;
|
||||
ulong codeStart = metaData.Is64Bit ? 0x8000000UL : 0x200000UL;
|
||||
int codeSize = 0;
|
||||
|
||||
ulong[] nsoBase = new ulong[staticObjects.Length];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue