Merge pull request #11669 from german77/settings2

yuzu: Fix custom rtc and mute audio settings
This commit is contained in:
liamwhite
2023-10-07 10:55:21 -04:00
committed by GitHub
5 changed files with 11 additions and 2 deletions

View File

@ -1078,6 +1078,10 @@ void System::ApplySettings() {
impl->RefreshTime();
if (IsPoweredOn()) {
if (Settings::values.custom_rtc_enabled) {
const s64 posix_time{Settings::values.custom_rtc.GetValue()};
GetTimeManager().UpdateLocalSystemClockTime(posix_time);
}
Renderer().RefreshBaseSettings();
}
}