summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Kelebek12024-02-03 15:21:10 +0000
committerGravatar Kelebek12024-02-03 15:21:10 +0000
commit108a72ea8ae4add2d603a340bf8b82e9268c104e (patch)
treeb5edfe34414245c17973f34d9009891f0f39910a
parentMerge pull request #12857 from liamwhite/const (diff)
downloadyuzu-108a72ea8ae4add2d603a340bf8b82e9268c104e.tar.gz
yuzu-108a72ea8ae4add2d603a340bf8b82e9268c104e.tar.xz
yuzu-108a72ea8ae4add2d603a340bf8b82e9268c104e.zip
Fix firmware timezone boot load check.
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/glue/time/time_zone_binary.cpp1
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 d5f7ca3d2..18c6abd6b 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) {
65 // Validate that the romfs is readable, using invalid firmware keys can cause this to get 65 // Validate that the romfs is readable, using invalid firmware keys can cause this to get
66 // set but the files to be garbage. In that case, we want to hit the next path and 66 // set but the files to be garbage. In that case, we want to hit the next path and
67 // synthesise them instead. 67 // synthesise them instead.
68 g_time_zone_binary_mount_result = ResultSuccess;
68 Service::PSC::Time::LocationName name{"Etc/GMT"}; 69 Service::PSC::Time::LocationName name{"Etc/GMT"};
69 if (!IsTimeZoneBinaryValid(name)) { 70 if (!IsTimeZoneBinaryValid(name)) {
70 ResetTimeZoneBinary(); 71 ResetTimeZoneBinary();