summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/system_clock_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/time/system_clock_core.h')
-rw-r--r--src/core/hle/service/time/system_clock_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/time/system_clock_core.h b/src/core/hle/service/time/system_clock_core.h
index b8e6122bf..83d0e5d62 100644
--- a/src/core/hle/service/time/system_clock_core.h
+++ b/src/core/hle/service/time/system_clock_core.h
@@ -35,12 +35,12 @@ public:
virtual ResultCode GetClockContext([[maybe_unused]] Core::System& system,
SystemClockContext& value) const {
value = context;
- return RESULT_SUCCESS;
+ return ResultSuccess;
}
virtual ResultCode SetClockContext(const SystemClockContext& value) {
context = value;
- return RESULT_SUCCESS;
+ return ResultSuccess;
}
virtual ResultCode Flush(const SystemClockContext& clock_context);