diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-03 17:10:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-03 17:10:30 +0100 |
commit | 5da55cbac9f85c3d93a81d4178fab50ea3673f16 (patch) | |
tree | 1bef0082b66ec5e149d470d9de6b8efe5941e36d /src/core/hle | |
parent | Merge pull request #12895 from german77/files (diff) | |
parent | Fix firmware timezone boot load check. (diff) | |
download | yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar.gz yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar.bz2 yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar.lz yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar.xz yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.tar.zst yuzu-5da55cbac9f85c3d93a81d4178fab50ea3673f16.zip |
Diffstat (limited to 'src/core/hle')
-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 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(); |