diff options
| author | 2021-05-20 20:10:56 -0700 | |
|---|---|---|
| committer | 2021-05-20 20:10:56 -0700 | |
| commit | 7626ca3343fda069d935bf3c95b637c929b6b7ac (patch) | |
| tree | 5ac286df8c6a406386b5fa3e64651c8e26ef61f3 /src/core/core.cpp | |
| parent | Merge pull request #6297 from lioncash/common-conv (diff) | |
| parent | configure_cpu: Simplify UpdateGroup (diff) | |
| download | yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar.gz yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.tar.xz yuzu-7626ca3343fda069d935bf3c95b637c929b6b7ac.zip | |
Merge pull request #6321 from lat9nq/per-game-cpu
configuration: Add CPU tab to game properties and slight per-game settings rework
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 47e70c157..826a00ad6 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) |