summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Bermond <danielbermond@gmail.com>2020-06-04 21:12:09 +0000
committerwm4 <wm4@nowhere>2020-06-05 13:43:50 +0200
commit8a725ec951ce456af7bb313a90bcf512a4efa738 (patch)
treebc9ea941a70ae38e3ca9a7e5eb66e2cc33cafff8
parenta1adafe9664f1665e7f4d0d53053683fe617d50e (diff)
downloadmpv-8a725ec951ce456af7bb313a90bcf512a4efa738.tar.bz2
mpv-8a725ec951ce456af7bb313a90bcf512a4efa738.tar.xz
vulkan/wayland: fix another build breakage
Commit 07b0c18 introduced some build breakages. Some breakages were fixed on c1fc535 and a1adafe. This one is still remaining. This commit fixes the following build error: [153/521] Compiling video/out/vulkan/context_wayland.c ../video/out/vulkan/context_wayland.c:26:10: fatal error: video/out/wayland/presentation-time.h: No such file or directory 26 | #include "video/out/wayland/presentation-time.h" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. Relevant to: #7802
-rw-r--r--video/out/vulkan/context_wayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vulkan/context_wayland.c b/video/out/vulkan/context_wayland.c
index ffe1e0facc..fa5994d280 100644
--- a/video/out/vulkan/context_wayland.c
+++ b/video/out/vulkan/context_wayland.c
@@ -23,7 +23,7 @@
#include "utils.h"
// Generated from presentation-time.xml
-#include "video/out/wayland/presentation-time.h"
+#include "generated/wayland/presentation-time.h"
struct priv {
struct mpvk_ctx vk;