From 60e5858d51f3bafb9ac136e0e0b82212905cf83f Mon Sep 17 00:00:00 2001 From: libretroadmin Date: Wed, 18 Dec 2024 23:39:24 +0100 Subject: [PATCH] fill_pathname_application_dir - use path_basedir instead of path_basedir_wrapper --- libretro-common/file/file_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index 6ed233fc30..3d842efde3 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -1480,7 +1480,7 @@ void fill_pathname_application_dir(char *s, size_t len) strlcpy(s, uwp_dir_install, len); #else fill_pathname_application_path(s, len); - path_basedir_wrapper(s); + path_basedir(s); #endif }