Fix wronog cmdid for ISteadyClock::GetTestOffset/SetTestOffset

This commit is contained in:
Thog 2019-09-26 21:58:11 +02:00
parent 152bdcd31d
commit ecafff7ff9
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6

View file

@ -16,7 +16,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.StaticService
return ResultCode.Success;
}
[Command(1)]
[Command(2)]
// GetTestOffset() -> nn::TimeSpanType
public ResultCode GetTestOffset(ServiceCtx context)
{
@ -25,7 +25,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.StaticService
return ResultCode.Success;
}
[Command(2)]
[Command(3)]
// SetTestOffset(nn::TimeSpanType)
public ResultCode SetTestOffset(ServiceCtx context)
{