summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorPedro Pombeiro <pedropombeiro@gmail.com>2017-06-27 13:50:58 +0200
committerwm4 <wm4@nowhere>2017-06-29 10:36:16 +0200
commit4637b029cdd168d4196f5ab69fa5f91556ee5d11 (patch)
tree88bf0e222d4743ffb067daedef4985887f4fca37 /options
parentf22d12ac5115a22a251e479c9c27e5f55337bb28 (diff)
downloadmpv-4637b029cdd168d4196f5ab69fa5f91556ee5d11.tar.bz2
mpv-4637b029cdd168d4196f5ab69fa5f91556ee5d11.tar.xz
Universal Windows Plaform (UWP) support
libmpv only. Some things are still missing. Heavily reworked. Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'options')
-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
};