summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-27 21:58:23 +0200
committerLioncash <mathew1800@gmail.com>2018-08-27 21:58:23 +0200
commitc6024379a4b8ec48a6764ad58df396635f4f3d21 (patch)
treed398253bccdcebcdac61960a1f81eedaf9f701e2 /src/core/file_sys
parentMerge pull request #1173 from lioncash/batch (diff)
downloadyuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar
yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar.gz
yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar.bz2
yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar.lz
yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar.xz
yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar.zst
yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.zip
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/vfs_real.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/file_sys/vfs_real.cpp b/src/core/file_sys/vfs_real.cpp
index 0afe515f0..2b8ac7103 100644
--- a/src/core/file_sys/vfs_real.cpp
+++ b/src/core/file_sys/vfs_real.cpp
@@ -341,7 +341,6 @@ std::shared_ptr<VfsFile> RealVfsDirectory::CreateFileRelative(std::string_view p
std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) {
const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path));
- auto parent = std::string(FileUtil::GetParentPath(full_path));
return base.CreateDirectory(full_path, perms);
}