From b533f18ab965506c372f182d4d4ede6a5ffb0f51 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 17 Apr 2020 20:02:42 -0400 Subject: [PATCH] service/time: Mark IsStandardNetworkSystemClockAccuracySufficient as const This doesn't modify internal member state. --- src/core/hle/service/time/standard_network_system_clock_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3f505c37c0..c993bdf79c 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 {};