Add XCI, NSP and NCA loading support (#404)
* Add XCI and NCA loading support * Code style changes * Add NSP loading * Changes from code review * Read XCIs with patches. Code style * Add KEYS.md file * Make file extension matching case-insensitive
This commit is contained in:
@ -61,6 +61,21 @@ namespace Ryujinx.HLE
|
||||
System.LoadCart(ExeFsDir, RomFsFile);
|
||||
}
|
||||
|
||||
public void LoadXci(string XciFile)
|
||||
{
|
||||
System.LoadXci(XciFile);
|
||||
}
|
||||
|
||||
public void LoadNca(string NcaFile)
|
||||
{
|
||||
System.LoadNca(NcaFile);
|
||||
}
|
||||
|
||||
public void LoadNsp(string NspFile)
|
||||
{
|
||||
System.LoadNsp(NspFile);
|
||||
}
|
||||
|
||||
public void LoadProgram(string FileName)
|
||||
{
|
||||
System.LoadProgram(FileName);
|
||||
|
Reference in New Issue
Block a user