summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 9e3eb3795..da1baa892 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -149,7 +149,9 @@ struct System::Impl {
149 const auto current_time = 149 const auto current_time =
150 std::chrono::duration_cast<std::chrono::seconds>(posix_time).count(); 150 std::chrono::duration_cast<std::chrono::seconds>(posix_time).count();
151 Settings::values.custom_rtc_differential = 151 Settings::values.custom_rtc_differential =
152 Settings::values.custom_rtc.value_or(current_time) - current_time; 152 (Settings::values.custom_rtc_enabled ? Settings::values.custom_rtc.GetValue()
153 : current_time) -
154 current_time;
153 155
154 // Create a default fs if one doesn't already exist. 156 // Create a default fs if one doesn't already exist.
155 if (virtual_filesystem == nullptr) { 157 if (virtual_filesystem == nullptr) {