Fix 9.0.0 related services bindings
This was wrong because of a mistake on switchbrew.
This commit is contained in:
parent
92e5e3c505
commit
152bdcd31d
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Time
|
||||
{
|
||||
[Service("time:m")] // 9.0.0+
|
||||
[Service("time:p")] // 9.0.0+
|
||||
class IPowerStateRequestHandler : IpcService
|
||||
{
|
||||
public IPowerStateRequestHandler(ServiceCtx context) { }
|
||||
|
|
|
@ -15,7 +15,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
|
|||
[Service("time:a", TimePermissions.Applet)]
|
||||
[Service("time:s", TimePermissions.System)]
|
||||
[Service("time:u", TimePermissions.User)]
|
||||
[Service("time:p", TimePermissions.System)] // 9.0.0+ - TODO: Fix the permission.
|
||||
[Service("time:su", TimePermissions.System)] // 9.0.0+ - TODO: Fix the permission.
|
||||
class IStaticService : IpcService
|
||||
{
|
||||
private TimePermissions _permissions;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Time
|
||||
{
|
||||
[Service("time:su")] // 9.0.0+
|
||||
[Service("time:m")] // 9.0.0+
|
||||
class ITimeServiceManager : IpcService
|
||||
{
|
||||
public ITimeServiceManager(ServiceCtx context) { }
|
||||
|
|
Loading…
Add table
Reference in a new issue