summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-04-17 20:02:42 -0400
committerLioncash <mathew1800@gmail.com>2020-04-17 20:02:45 -0400
commitb533f18ab965506c372f182d4d4ede6a5ffb0f51 (patch)
tree2947db4334e4bc8968449a023146ac9e3f13d3d4 /src
parent0cfd3b94db89f4fc6b5755d61060a684aa9ff7d6 (diff)
service/time: Mark IsStandardNetworkSystemClockAccuracySufficient as const
This doesn't modify internal member state.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/time/standard_network_system_clock_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/time/standard_network_system_clock_core.h b/src/core/hle/service/time/standard_network_system_clock_core.h
index 3f505c37c..c993bdf79 100644
--- a/src/core/hle/service/time/standard_network_system_clock_core.h
+++ b/src/core/hle/service/time/standard_network_system_clock_core.h
@@ -23,7 +23,7 @@ public:
standard_network_clock_sufficient_accuracy = value;
}
- bool IsStandardNetworkSystemClockAccuracySufficient(Core::System& system) {
+ bool IsStandardNetworkSystemClockAccuracySufficient(Core::System& system) const {
SystemClockContext context{};
if (GetClockContext(system, context) != RESULT_SUCCESS) {
return {};