mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-30 02:27:10 +02:00
spl: Implement IGeneralInterface GetConfig (#2705)
* spl: Implement IGeneralInterface GetConfig This PR implement the GetConfig call of the spl service. This is currently needed for some homebrews which currently needs Ignore Missing Service to boot. Now it's fixed. Implementation was done using Atmosphère code and REing too. * Addresses gdkchan feedback
This commit is contained in:
parent
47093f201a
commit
9ac9489b8a
7 changed files with 227 additions and 2 deletions
12
Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
Normal file
12
Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Spl
|
||||
{
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 26,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
InvalidArguments = (101 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue