summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-05-16 07:17:18 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2021-05-17 21:54:30 +0200
commit339dc4f806b0c39a4ec6460187f345c4e2890d05 (patch)
tree1e47f2c0afa0a9bc4ecae5f2d9886c71bc6629c4 /src/core/core.cpp
parentconfiguration: Add CPU tab to game properties (diff)
downloadyuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar
yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar.gz
yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar.bz2
yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar.lz
yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar.xz
yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar.zst
yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.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 434bf3262..6dadf89f0 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)