diff options
| author | 2021-05-16 01:17:18 -0400 | |
|---|---|---|
| committer | 2021-05-17 15:54:30 -0400 | |
| commit | 339dc4f806b0c39a4ec6460187f345c4e2890d05 (patch) | |
| tree | 1e47f2c0afa0a9bc4ecae5f2d9886c71bc6629c4 /src/core/core.cpp | |
| parent | configuration: Add CPU tab to game properties (diff) | |
| download | yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar.gz yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.tar.xz yuzu-339dc4f806b0c39a4ec6460187f345c4e2890d05.zip | |
general: Demote custom_rtc to regular setting
Diffstat (limited to 'src/core/core.cpp')
| -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 { | |||
| 173 | const auto current_time = std::chrono::duration_cast<std::chrono::seconds>( | 173 | const auto current_time = std::chrono::duration_cast<std::chrono::seconds>( |
| 174 | std::chrono::system_clock::now().time_since_epoch()); | 174 | std::chrono::system_clock::now().time_since_epoch()); |
| 175 | Settings::values.custom_rtc_differential = | 175 | Settings::values.custom_rtc_differential = |
| 176 | Settings::values.custom_rtc.GetValue().value_or(current_time) - current_time; | 176 | Settings::values.custom_rtc.value_or(current_time) - current_time; |
| 177 | 177 | ||
| 178 | // Create a default fs if one doesn't already exist. | 178 | // Create a default fs if one doesn't already exist. |
| 179 | if (virtual_filesystem == nullptr) | 179 | if (virtual_filesystem == nullptr) |