summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/system_clock_core.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-04-18 02:04:04 +0200
committerLioncash <mathew1800@gmail.com>2020-04-18 02:04:06 +0200
commit7714b02d95f3f70efc3a5148f18f4b5a22855f16 (patch)
tree2d5a7ca74652650ba4202e373f52e362e2a79cd8 /src/core/hle/service/time/system_clock_core.cpp
parentservice/time: Mark IsStandardNetworkSystemClockAccuracySufficient as const (diff)
downloadyuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar.gz
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar.bz2
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar.lz
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar.xz
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.tar.zst
yuzu-7714b02d95f3f70efc3a5148f18f4b5a22855f16.zip
Diffstat (limited to '')
-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 @@
namespace Service::Time::Clock {
SystemClockCore::SystemClockCore(SteadyClockCore& steady_clock_core)
- : steady_clock_core{steady_clock_core}, is_initialized{} {
+ : steady_clock_core{steady_clock_core} {
context.steady_time_point.clock_source_id = steady_clock_core.GetClockSourceId();
}