diff options
author | lat9nq <lat9nq@virginia.edu> | 2020-05-28 19:33:50 +0200 |
---|---|---|
committer | lat9nq <lat9nq@virginia.edu> | 2020-05-28 19:33:50 +0200 |
commit | f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48 (patch) | |
tree | b0349aa4a7c1aa4e0d2bd5f6c33201bb86502b73 /src/core | |
parent | Address requested changes (diff) | |
download | yuzu-f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48.tar yuzu-f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48.tar.gz yuzu-f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48.tar.bz2 yuzu-f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48.tar.lz yuzu-f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48.tar.xz yuzu-f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48.tar.zst yuzu-f57cbd9f247ac43dbc9e599cc8523c9b8d93ad48.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/file_sys/patch_manager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp index 1002b688c..c47ff863e 100644 --- a/src/core/file_sys/patch_manager.cpp +++ b/src/core/file_sys/patch_manager.cpp @@ -56,8 +56,7 @@ std::shared_ptr<VfsDirectory> FindSubdirectoryCaseless(const std::shared_ptr<Vfs #else const auto subdirs = dir->GetSubdirectories(); for (const auto& subdir : subdirs) { - std::string dir_name = subdir->GetName(); - dir_name = Common::ToLower(dir_name); + std::string dir_name = Common::ToLower(subdir->GetName()); if (dir_name == name) { return subdir; } |