summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-05-21 05:10:56 +0200
committerGitHub <noreply@github.com>2021-05-21 05:10:56 +0200
commit7626ca3343fda069d935bf3c95b637c929b6b7ac (patch)
tree5ac286df8c6a406386b5fa3e64651c8e26ef61f3 /src/core/core.cpp
parentMerge pull request #6297 from lioncash/common-conv (diff)
parentconfigure_cpu: Simplify UpdateGroup (diff)
downloadyuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar
yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar.gz
yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar.bz2
yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar.lz
yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar.xz
yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar.zst
yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 47e70c157..826a00ad6 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -173,7 +173,7 @@ struct System::Impl {
const auto current_time = std::chrono::duration_cast<std::chrono::seconds>(
std::chrono::system_clock::now().time_since_epoch());
Settings::values.custom_rtc_differential =
- Settings::values.custom_rtc.GetValue().value_or(current_time) - current_time;
+ Settings::values.custom_rtc.value_or(current_time) - current_time;
// Create a default fs if one doesn't already exist.
if (virtual_filesystem == nullptr)