summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-12 05:07:37 +0100
committerGitHub <noreply@github.com>2020-12-12 05:07:37 +0100
commitc918c6480f9426518df5e741db34620aec350c48 (patch)
tree248c4a7d84ea6f1c1a7781a8490261165745ac0d /src/core
parentMerge pull request #5172 from lioncash/svc-wide (diff)
parentRevert "Merge pull request #5173 from lioncash/common-fs" (diff)
downloadyuzu-c918c6480f9426518df5e741db34620aec350c48.tar
yuzu-c918c6480f9426518df5e741db34620aec350c48.tar.gz
yuzu-c918c6480f9426518df5e741db34620aec350c48.tar.bz2
yuzu-c918c6480f9426518df5e741db34620aec350c48.tar.lz
yuzu-c918c6480f9426518df5e741db34620aec350c48.tar.xz
yuzu-c918c6480f9426518df5e741db34620aec350c48.tar.zst
yuzu-c918c6480f9426518df5e741db34620aec350c48.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/file_sys/vfs_real.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/file_sys/vfs_real.cpp b/src/core/file_sys/vfs_real.cpp
index 3b70f7755..488687ba9 100644
--- a/src/core/file_sys/vfs_real.cpp
+++ b/src/core/file_sys/vfs_real.cpp
@@ -94,13 +94,9 @@ VirtualFile RealVfsFilesystem::OpenFile(std::string_view path_, Mode perms) {
VirtualFile RealVfsFilesystem::CreateFile(std::string_view path_, Mode perms) {
const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault);
- const auto parent_path = FS::GetParentPath(path);
-
+ const auto path_fwd = FS::SanitizePath(path, FS::DirectorySeparator::ForwardSlash);
if (!FS::Exists(path)) {
- if (!FS::CreateDirs(parent_path)) {
- return nullptr;
- }
-
+ FS::CreateFullPath(path_fwd);
if (!FS::CreateEmptyFile(path)) {
return nullptr;
}