wayland: Remove bitfield specifiers from boolean values

If SDL_bool is no longer unsigned, this won't work as the valid values are only 1 and -1.
This commit is contained in:
Frank Praznik 2023-12-29 14:18:55 -05:00
parent 530b41d531
commit 5d0c893723
1 changed files with 7 additions and 7 deletions

View File

@ -120,13 +120,13 @@ struct SDL_WindowData
int system_min_required_height;
SDL_DisplayID last_displayID;
int fullscreen_deadline_count;
SDL_bool floating : 1;
SDL_bool suspended : 1;
SDL_bool active : 1;
SDL_bool is_fullscreen : 1;
SDL_bool drop_fullscreen_requests : 1;
SDL_bool fullscreen_was_positioned : 1;
SDL_bool show_hide_sync_required : 1;
SDL_bool floating;
SDL_bool suspended;
SDL_bool active;
SDL_bool is_fullscreen;
SDL_bool drop_fullscreen_requests;
SDL_bool fullscreen_was_positioned;
SDL_bool show_hide_sync_required;
SDL_HitTestResult hit_test_result;
};