summaryrefslogtreecommitdiffstats
path: root/options/path.c
diff options
context:
space:
mode:
Diffstat (limited to 'options/path.c')
-rw-r--r--options/path.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/options/path.c b/options/path.c
index a2b9f28527..cd14e66bb7 100644
--- a/options/path.c
+++ b/options/path.c
@@ -46,7 +46,9 @@ static const mp_get_platform_path_cb path_resolvers[] = {
#if !defined(_WIN32) || defined(__CYGWIN__)
mp_get_platform_path_unix,
#endif
-#if defined(_WIN32)
+#if HAVE_UWP
+ mp_get_platform_path_uwp,
+#elif defined(_WIN32)
mp_get_platform_path_win,
#endif
};