diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-05-16 07:17:18 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-05-17 21:54:30 +0200 |
commit | 339dc4f806b0c39a4ec6460187f345c4e2890d05 (patch) | |
tree | 1e47f2c0afa0a9bc4ecae5f2d9886c71bc6629c4 /src/core | |
parent | configuration: Add CPU tab to game properties (diff) | |
download | yuzu-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 'src/core')
-rw-r--r-- | src/core/core.cpp | 2 |
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) |