summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2020-04-17 20:04:04 -0400
committerGravatar Lioncash2020-04-17 20:04:06 -0400
commit7714b02d95f3f70efc3a5148f18f4b5a22855f16 (patch)
tree2d5a7ca74652650ba4202e373f52e362e2a79cd8 /src
parentservice/time: Mark IsStandardNetworkSystemClockAccuracySufficient as const (diff)
downloadyuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar.gz
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar.xz
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.zip
time/system_clock_core: Remove unnecessary initializer
This is already initialized within the class body.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/time/system_clock_core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/time/system_clock_core.cpp b/src/core/hle/service/time/system_clock_core.cpp
index 1a3ab8cfa..d31d4e2ca 100644
--- a/src/core/hle/service/time/system_clock_core.cpp
+++ b/src/core/hle/service/time/system_clock_core.cpp
@@ -9,7 +9,7 @@
9namespace Service::Time::Clock { 9namespace Service::Time::Clock {
10 10
11SystemClockCore::SystemClockCore(SteadyClockCore& steady_clock_core) 11SystemClockCore::SystemClockCore(SteadyClockCore& steady_clock_core)
12 : steady_clock_core{steady_clock_core}, is_initialized{} { 12 : steady_clock_core{steady_clock_core} {
13 context.steady_time_point.clock_source_id = steady_clock_core.GetClockSourceId(); 13 context.steady_time_point.clock_source_id = steady_clock_core.GetClockSourceId();
14} 14}
15 15