From b75cf5290985d7a2bbaf56f842b32ba5be97f6a4 Mon Sep 17 00:00:00 2001 From: Bashar Astifan Date: Thu, 4 May 2023 05:48:14 +0400 Subject: [PATCH] Fixed Path issue --- Common/File/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/File/Path.cpp b/Common/File/Path.cpp index 855c5a2980..4dd37ca166 100644 --- a/Common/File/Path.cpp +++ b/Common/File/Path.cpp @@ -302,7 +302,7 @@ std::string Path::ToShortFriendlyPath() const { #if PPSSPP_PLATFORM(UWP) && !defined(__LIBRETRO__) return GetPreviewPath(path_); #else - return path_.ToVisualString(); + return Path(path_).ToVisualString(); #endif }