[vlc-commits] Fix inverted logic
Rafaël Carré
git at videolan.org
Tue May 7 13:42:39 CEST 2013
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Tue May 7 13:42:03 2013 +0200| [5648d4e85f720b0f3275a14b7fab108c9c967c8b] | committer: Rafaël Carré
Fix inverted logic
We should still default to multimedia clock instead of performance
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5648d4e85f720b0f3275a14b7fab108c9c967c8b
---
src/win32/thread.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/win32/thread.c b/src/win32/thread.c
index e60be86..f3bb36a 100644
--- a/src/win32/thread.c
+++ b/src/win32/thread.c
@@ -725,7 +725,7 @@ static void SelectClockSource (vlc_object_t *obj)
return;
}
-#if !VLC_WINSTORE_APP
+#if VLC_WINSTORE_APP
const char *name = "perf";
#else
const char *name = "multimedia";
More information about the vlc-commits
mailing list