mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
CXX_BUILD fix
This commit is contained in:
parent
42686f2f81
commit
c87ef25133
@ -511,10 +511,10 @@ static void registry_handle_global(void *data, struct wl_registry *reg,
|
||||
wl->shell = (struct wl_shell*)
|
||||
wl_registry_bind(reg, id, &wl_shell_interface, 1);
|
||||
else if (string_is_equal(interface, "wl_shm"))
|
||||
wl->shm = wl_registry_bind(reg, id, &wl_shm_interface, 1);
|
||||
wl->shm = (wl_shm*)wl_registry_bind(reg, id, &wl_shm_interface, 1);
|
||||
else if (string_is_equal(interface, "wl_seat"))
|
||||
{
|
||||
wl->seat = wl_registry_bind(reg, id, &wl_seat_interface, 4);
|
||||
wl->seat = (wl_seat*)wl_registry_bind(reg, id, &wl_seat_interface, 4);
|
||||
wl_seat_add_listener(wl->seat, &seat_listener, wl);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user