From 360c5459b5fb064150fa69b8a4b50ea757e7089f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 6 Feb 2025 11:36:57 -0600 Subject: [PATCH] Linux: Fix problem with memstick directory creation CreateDir may not be enough so use CreateFullPath --- Core/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/System.cpp b/Core/System.cpp index ff3f88ef0b71..b3b108148502 100644 --- a/Core/System.cpp +++ b/Core/System.cpp @@ -661,7 +661,7 @@ bool CreateSysDirectories() { Path pspDir = GetSysDirectory(DIRECTORY_PSP); INFO_LOG(Log::IO, "Creating '%s' and subdirs:", pspDir.c_str()); - File::CreateDir(pspDir); + File::CreateFullPath(pspDir); if (!File::Exists(pspDir)) { INFO_LOG(Log::IO, "Not a workable memstick directory. Giving up"); return false;