diff options
| author | 2018-08-27 15:58:23 -0400 | |
|---|---|---|
| committer | 2018-08-27 15:58:23 -0400 | |
| commit | c6024379a4b8ec48a6764ad58df396635f4f3d21 (patch) | |
| tree | d398253bccdcebcdac61960a1f81eedaf9f701e2 /src | |
| parent | Merge pull request #1173 from lioncash/batch (diff) | |
| download | yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar.gz yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.tar.xz yuzu-c6024379a4b8ec48a6764ad58df396635f4f3d21.zip | |
vfs_real: Remove unused variable in CreateDirectoryRelative()
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/file_sys/vfs_real.cpp | 1 |
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 | |||
| 341 | 341 | ||
| 342 | std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) { | 342 | std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) { |
| 343 | const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path)); | 343 | const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path)); |
| 344 | auto parent = std::string(FileUtil::GetParentPath(full_path)); | ||
| 345 | return base.CreateDirectory(full_path, perms); | 344 | return base.CreateDirectory(full_path, perms); |
| 346 | } | 345 | } |
| 347 | 346 | ||