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
This commit is contained in:
Daniel Bermond 2020-06-04 21:12:09 +00:00 committed by wm4
parent a1adafe966
commit 8a725ec951
1 changed files with 1 additions and 1 deletions

View File

@ -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;