diff options
author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2024-02-03 15:21:10 +0000 |
---|---|---|
committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2024-02-03 15:21:10 +0000 |
commit | 108a72ea8ae4add2d603a340bf8b82e9268c104e (patch) | |
tree | b5edfe34414245c17973f34d9009891f0f39910a /src | |
parent | 6baf965777145fd9c76bd06a3c140afa46a50e87 (diff) |
Fix firmware timezone boot load check.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/glue/time/time_zone_binary.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/glue/time/time_zone_binary.cpp b/src/core/hle/service/glue/time/time_zone_binary.cpp index d5f7ca3d25..18c6abd6bb 100644 --- a/src/core/hle/service/glue/time/time_zone_binary.cpp +++ b/src/core/hle/service/glue/time/time_zone_binary.cpp @@ -65,6 +65,7 @@ Result MountTimeZoneBinary(Core::System& system) { // Validate that the romfs is readable, using invalid firmware keys can cause this to get // set but the files to be garbage. In that case, we want to hit the next path and // synthesise them instead. + g_time_zone_binary_mount_result = ResultSuccess; Service::PSC::Time::LocationName name{"Etc/GMT"}; if (!IsTimeZoneBinaryValid(name)) { ResetTimeZoneBinary(); |