From e0ad1021a512c258fa130917f332ee4799e926d7 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 8 Apr 2015 02:22:28 -0400 Subject: [PATCH] Wayland: Patched to compile. --- src/video/wayland/SDL_waylandvideo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/wayland/SDL_waylandvideo.c b/src/video/wayland/SDL_waylandvideo.c index 2733fd0d7..e91374b63 100644 --- a/src/video/wayland/SDL_waylandvideo.c +++ b/src/video/wayland/SDL_waylandvideo.c @@ -297,10 +297,10 @@ Wayland_VideoInit(_THIS) wl_registry_add_listener(data->registry, ®istry_listener, data); // First roundtrip to receive all registry objects. - wl_display_roundtrip(data->display); + WAYLAND_wl_display_roundtrip(data->display); // Second roundtrip to receive all output events. - wl_display_roundtrip(data->display); + WAYLAND_wl_display_roundtrip(data->display); data->xkb_context = WAYLAND_xkb_context_new(0); if (!data->xkb_context) {