diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-15 18:16:31 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-16 06:15:27 +0200 |
commit | 2079bb4090b97b87faf69b3a32f8c115de61002e (patch) | |
tree | bba0fddafbd717cf4b89c0e76783e5dd0be4e42f /src | |
parent | Merge pull request #4328 from lioncash/unused-var3 (diff) | |
download | yuzu-2079bb4090b97b87faf69b3a32f8c115de61002e.tar yuzu-2079bb4090b97b87faf69b3a32f8c115de61002e.tar.gz yuzu-2079bb4090b97b87faf69b3a32f8c115de61002e.tar.bz2 yuzu-2079bb4090b97b87faf69b3a32f8c115de61002e.tar.lz yuzu-2079bb4090b97b87faf69b3a32f8c115de61002e.tar.xz yuzu-2079bb4090b97b87faf69b3a32f8c115de61002e.tar.zst yuzu-2079bb4090b97b87faf69b3a32f8c115de61002e.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index cadc03805..3020101a1 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp @@ -55,6 +55,9 @@ std::string VfsDirectoryServiceWrapper::GetName() const { ResultCode VfsDirectoryServiceWrapper::CreateFile(const std::string& path_, u64 size) const { std::string path(FileUtil::SanitizePath(path_)); auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path)); + if (dir == nullptr) { + dir = backing->CreateSubdirectory(FileUtil::GetParentPath(path)); + } auto file = dir->CreateFile(FileUtil::GetFilename(path)); if (file == nullptr) { // TODO(DarkLordZach): Find a better error code for this |