Merge pull request #13040 from Kelebek1/timezone_shutdown

Close reference to TimeZoneBinary on game close
This commit is contained in:
liamwhite 2024-02-17 17:53:53 -05:00 committed by GitHub
commit 36108ce2be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -186,6 +186,10 @@ TimeManager::TimeManager(Core::System& system)
}
}
TimeManager::~TimeManager() {
ResetTimeZoneBinary();
}
Result TimeManager::SetupStandardSteadyClockCore() {
Common::UUID external_clock_source_id{};
auto res = m_set_sys->GetExternalSteadyClockSourceId(&external_clock_source_id);

View File

@ -26,6 +26,7 @@ namespace Service::Glue::Time {
class TimeManager {
public:
explicit TimeManager(Core::System& system);
~TimeManager();
std::shared_ptr<Service::Set::ISystemSettingsServer> m_set_sys;