diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-18 17:25:26 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-18 17:25:26 +0200 |
commit | fd5ef1970c6f66c5080a8b3388986e485d751588 (patch) | |
tree | 4ef400cb71105e184a055b332bf7a8aedd457f3c /src | |
parent | Merge pull request #6478 from ameerj/vk-layer-settings (diff) | |
download | yuzu-fd5ef1970c6f66c5080a8b3388986e485d751588.tar yuzu-fd5ef1970c6f66c5080a8b3388986e485d751588.tar.gz yuzu-fd5ef1970c6f66c5080a8b3388986e485d751588.tar.bz2 yuzu-fd5ef1970c6f66c5080a8b3388986e485d751588.tar.lz yuzu-fd5ef1970c6f66c5080a8b3388986e485d751588.tar.xz yuzu-fd5ef1970c6f66c5080a8b3388986e485d751588.tar.zst yuzu-fd5ef1970c6f66c5080a8b3388986e485d751588.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/time/time_zone_content_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/time/time_zone_content_manager.cpp b/src/core/hle/service/time/time_zone_content_manager.cpp index bf4402308..c634b6abd 100644 --- a/src/core/hle/service/time/time_zone_content_manager.cpp +++ b/src/core/hle/service/time/time_zone_content_manager.cpp @@ -125,7 +125,7 @@ ResultCode TimeZoneContentManager::GetTimeZoneInfoFile(const std::string& locati return ERROR_TIME_NOT_FOUND; } - vfs_file = zoneinfo_dir->GetFile(location_name); + vfs_file = zoneinfo_dir->GetFileRelative(location_name); if (!vfs_file) { LOG_ERROR(Service_Time, "{:016X} has no file \"{}\"! Using default timezone.", time_zone_binary_titleid, location_name); |