From bcf3fabd83a157388d4982572e1b396c4e7a92a8 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Mon, 4 Sep 2023 16:32:28 +0100 Subject: [PATCH] [*] FS Resources (GetWritableAppdata): fail over to this path instead of failing --- Source/IO/FS/Resources.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/IO/FS/Resources.cpp b/Source/IO/FS/Resources.cpp index b6021adc..cbad3310 100644 --- a/Source/IO/FS/Resources.cpp +++ b/Source/IO/FS/Resources.cpp @@ -405,7 +405,7 @@ namespace Aurora::IO::FS path.clear(); if (gGlobalWritableAppDirectory.empty()) { - return false; + return GetSystemDomain(path); } path = gGlobalWritableAppDirectory; return path.size();