diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-12-29 01:09:57 +0100 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-01-08 01:19:40 +0100 |
commit | dbb1eb9c29e072e77b66efa28ea21e814100d6ee (patch) | |
tree | c180635840adf9d1555262bf68d223bcd78fb691 /src/core/hle/service | |
parent | core: Set custom RTC differential on game boot (diff) | |
download | yuzu-dbb1eb9c29e072e77b66efa28ea21e814100d6ee.tar yuzu-dbb1eb9c29e072e77b66efa28ea21e814100d6ee.tar.gz yuzu-dbb1eb9c29e072e77b66efa28ea21e814100d6ee.tar.bz2 yuzu-dbb1eb9c29e072e77b66efa28ea21e814100d6ee.tar.lz yuzu-dbb1eb9c29e072e77b66efa28ea21e814100d6ee.tar.xz yuzu-dbb1eb9c29e072e77b66efa28ea21e814100d6ee.tar.zst yuzu-dbb1eb9c29e072e77b66efa28ea21e814100d6ee.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/time/time.cpp | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/core/hle/service/time/time.cpp b/src/core/hle/service/time/time.cpp index 16564de24..ef8c9f2b7 100644 --- a/src/core/hle/service/time/time.cpp +++ b/src/core/hle/service/time/time.cpp @@ -12,9 +12,17 @@ #include "core/hle/kernel/client_session.h" #include "core/hle/service/time/interface.h" #include "core/hle/service/time/time.h" +#include "core/settings.h" namespace Service::Time { +static s64 GetSecondsSinceEpoch() { + return std::chrono::duration_cast<std::chrono::seconds>( + std::chrono::system_clock::now().time_since_epoch()) + .count() + + Settings::values.custom_rtc_differential; +} + static void PosixToCalendar(u64 posix_time, CalendarTime& calendar_time, CalendarAdditionalInfo& additional_info, [[maybe_unused]] const TimeZoneRule& /*rule*/) { @@ -68,9 +76,7 @@ public: private: void GetCurrentTime(Kernel::HLERequestContext& ctx) { - const s64 time_since_epoch{std::chrono::duration_cast<std::chrono::seconds>( - std::chrono::system_clock::now().time_since_epoch()) - .count()}; + const s64 time_since_epoch{GetSecondsSinceEpoch()}; LOG_DEBUG(Service_Time, "called"); IPC::ResponseBuilder rb{ctx, 4}; @@ -266,9 +272,7 @@ void Module::Interface::GetClockSnapshot(Kernel::HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto initial_type = rp.PopRaw<u8>(); - const s64 time_since_epoch{std::chrono::duration_cast<std::chrono::seconds>( - std::chrono::system_clock::now().time_since_epoch()) - .count()}; + const s64 time_since_epoch{GetSecondsSinceEpoch()}; const std::time_t time(time_since_epoch); const std::tm* tm = std::localtime(&time); |