mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-03-22 23:59:22 +01:00
vfs_real: Remove unused variable in CreateDirectoryRelative()
This commit is contained in:
parent
be2f1eabd7
commit
c6024379a4
1 changed files with 0 additions and 1 deletions
|
@ -341,7 +341,6 @@ std::shared_ptr<VfsFile> RealVfsDirectory::CreateFileRelative(std::string_view p
|
||||||
|
|
||||||
std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) {
|
std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) {
|
||||||
const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(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);
|
return base.CreateDirectory(full_path, perms);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue