mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 15:37:11 +02:00
Fix GetAvailableLanguageCodes, stub ListAddOnContent and NvGpuAsIoctlRemap (0x4114)
This commit is contained in:
parent
2d33756878
commit
9754836c1b
5 changed files with 96 additions and 27 deletions
|
@ -13,7 +13,8 @@ namespace Ryujinx.Core.OsHle.Services.Ns
|
|||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
{ 2, CountAddOnContent }
|
||||
{ 2, CountAddOnContent },
|
||||
{ 3, ListAddOnContent }
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -23,5 +24,14 @@ namespace Ryujinx.Core.OsHle.Services.Ns
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long ListAddOnContent(ServiceCtx Context)
|
||||
{
|
||||
//TODO: This is supposed to write a u32 array aswell.
|
||||
//It's unknown what it contains.
|
||||
Context.ResponseData.Write(0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue