Skip to content

Commit

Permalink
Wayland: Fixed storing a theme cursor which is never used in video data.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Mar 16, 2016
1 parent a29a925 commit fa77df4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/video/wayland/SDL_waylandvideo.c
Expand Up @@ -253,7 +253,6 @@ display_handle_global(void *data, struct wl_registry *registry, uint32_t id,
} else if (strcmp(interface, "wl_shm") == 0) {
d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
d->cursor_theme = WAYLAND_wl_cursor_theme_load(NULL, 32, d->shm);
d->default_cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "left_ptr");

#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
} else if (strcmp(interface, "qt_touch_extension") == 0) {
Expand Down
1 change: 0 additions & 1 deletion src/video/wayland/SDL_waylandvideo.h
Expand Up @@ -42,7 +42,6 @@ typedef struct {
struct wl_compositor *compositor;
struct wl_shm *shm;
struct wl_cursor_theme *cursor_theme;
struct wl_cursor *default_cursor;
struct wl_pointer *pointer;
struct wl_shell *shell;

Expand Down

0 comments on commit fa77df4

Please sign in to comment.