From bf5beb6ac6b134a48487a48f3b20795ddac0f668 Mon Sep 17 00:00:00 2001 From: lizzie Date: Fri, 5 Dec 2025 03:51:05 +0000 Subject: [PATCH] try to fix the paths --- src/common/fs/fs.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/fs/fs.cpp b/src/common/fs/fs.cpp index 174aed49b8..c86a8e565d 100644 --- a/src/common/fs/fs.cpp +++ b/src/common/fs/fs.cpp @@ -171,11 +171,14 @@ bool CreateDir(const fs::path& path) { return false; } + // TODO: Maybe this is what causes death? +#ifndef __OPENORBIS__ if (!Exists(path.parent_path())) { LOG_ERROR(Common_Filesystem, "Parent directory of path={} does not exist", PathToUTF8String(path)); return false; } +#endif if (IsDir(path)) { LOG_DEBUG(Common_Filesystem, "Filesystem object at path={} exists and is a directory",