mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-29 04:26:24 +02:00
parent
417df486b1
commit
361d0c5632
622 changed files with 3080 additions and 2652 deletions
|
@ -34,7 +34,7 @@ namespace Ryujinx.HLE.Loaders.Processes
|
|||
if (!_processesByPid.TryGetValue(_latestPid, out ProcessResult value))
|
||||
throw new RyujinxException(
|
||||
$"The HLE Process map did not have a process with ID {_latestPid}. Are you missing firmware?");
|
||||
|
||||
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
@ -159,7 +159,7 @@ namespace Ryujinx.HLE.Loaders.Processes
|
|||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
public bool LoadNxo(string path)
|
||||
{
|
||||
BlitStruct<ApplicationControlProperty> nacpData = new(1);
|
||||
|
@ -172,7 +172,7 @@ namespace Ryujinx.HLE.Loaders.Processes
|
|||
// Load executable.
|
||||
IExecutable executable;
|
||||
|
||||
if (Path.GetExtension(path).ToLower() == ".nro")
|
||||
if (Path.GetExtension(path).Equals(".nro", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
FileStream input = new(path, FileMode.Open);
|
||||
NroExecutable nro = new(input.AsStorage());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue