From 4251eb5f61cc8051fa040fef83db77746b76f0f1 Mon Sep 17 00:00:00 2001 From: LibretroAdmin Date: Fri, 30 Sep 2022 17:50:07 +0200 Subject: [PATCH] Turn uwp_mkdir_impl function static --- libretro-common/vfs/vfs_implementation_uwp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/vfs/vfs_implementation_uwp.cpp b/libretro-common/vfs/vfs_implementation_uwp.cpp index 4e09ec1402..3458332471 100644 --- a/libretro-common/vfs/vfs_implementation_uwp.cpp +++ b/libretro-common/vfs/vfs_implementation_uwp.cpp @@ -391,7 +391,7 @@ error: return NULL; } -int uwp_mkdir_impl(std::experimental::filesystem::path dir) +static int uwp_mkdir_impl(std::experimental::filesystem::path dir) { /*I feel like this should create the directory recursively but the existing implementation does not so this update won't *I put in the work but I just commented out the stuff you would need */