mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 11:09:59 +00:00
service/time: Mark IsStandardNetworkSystemClockAccuracySufficient as const
This doesn't modify internal member state.
This commit is contained in:
parent
0cfd3b94db
commit
b533f18ab9
1 changed files with 1 additions and 1 deletions
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue