Patched to compile on C89 compilers.
This commit is contained in:
parent
e2d788ca24
commit
48c1032b42
1 changed files with 2 additions and 1 deletions
|
@ -293,13 +293,14 @@ keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
|
|||
struct wl_array *keys)
|
||||
{
|
||||
struct SDL_WaylandInput *input = data;
|
||||
SDL_WindowData *window;
|
||||
|
||||
if (!surface) {
|
||||
/* enter event for a window we've just destroyed */
|
||||
return;
|
||||
}
|
||||
|
||||
SDL_WindowData *window = wl_surface_get_user_data(surface);
|
||||
window = wl_surface_get_user_data(surface);
|
||||
|
||||
input->keyboard_focus = window;
|
||||
window->keyboard_device = input;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue