summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar liamwhite2024-02-03 11:10:30 -0500
committerGravatar GitHub2024-02-03 11:10:30 -0500
commit5da55cbac9f85c3d93a81d4178fab50ea3673f16 (patch)
tree1bef0082b66ec5e149d470d9de6b8efe5941e36d
parentMerge pull request #12895 from german77/files (diff)
parentFix firmware timezone boot load check. (diff)
downloadyuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar.gz
yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar.xz
yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.zip
Merge pull request #12901 from Kelebek1/timezone_firmware_fix
Fix firmware timezone boot load check.
-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();