mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:38:36 +00:00
0510fde25a
* 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
12 lines
216 B
C#
12 lines
216 B
C#
namespace Ryujinx.HLE.HOS.Services.Spl
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 26,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
InvalidArguments = (101 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |