diff --git a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs b/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs index d92cb7263..abe09f5e6 100644 --- a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs +++ b/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs @@ -78,7 +78,7 @@ namespace Ryujinx.HLE.HOS.Services.Time // SetStandardSteadyClockInternalOffset(nn::TimeSpanType internal_offset) public ResultCode SetStandardSteadyClockInternalOffset(ServiceCtx context) { - if ((_permissions & TimePermissions.BypassUninitialized) == 0) + if ((_permissions & TimePermissions.SteadyClockWritableMask) == 0) { return ResultCode.PermissionDenied; } @@ -181,4 +181,4 @@ namespace Ryujinx.HLE.HOS.Services.Time return _inner.CalculateSpanBetween(context); } } -} \ No newline at end of file +}