diff --git a/src/core/core.cpp b/src/core/core.cpp index 08cbb89783f43ab54cec7136f6d1e9ba112d913b..0ab2e3b761ef9f978c5f607cd4de5cdb8436c496 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -1078,6 +1078,10 @@ void System::ApplySettings() { impl->RefreshTime(); if (IsPoweredOn()) { + if (Settings::values.custom_rtc_enabled) { + const s64 posix_time{Settings::values.custom_rtc.GetValue()}; + GetTimeManager().UpdateLocalSystemClockTime(posix_time); + } Renderer().RefreshBaseSettings(); } }