summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-03 11:10:30 -0500
committerGitHub <noreply@github.com>2024-02-03 11:10:30 -0500
commit5da55cbac9f85c3d93a81d4178fab50ea3673f16 (patch)
tree1bef0082b66ec5e149d470d9de6b8efe5941e36d
parent81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8 (diff)
parent108a72ea8ae4add2d603a340bf8b82e9268c104e (diff)
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) {
// 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();