Navigation Menu

Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 29, 2011
1 parent c55514b commit bde675e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events/SDL_windowevents.c
Expand Up @@ -171,7 +171,7 @@ SDL_SendWindowEvent(SDL_Window * window, Uint8 windowevent, int data1,

/* Fixes queue overflow with resize events that aren't processed */
if (windowevent == SDL_WINDOWEVENT_RESIZED ||
windowevent == SDL_WINDOWEVENT_SIZE_CHANGED) &&
windowevent == SDL_WINDOWEVENT_SIZE_CHANGED) {
SDL_FilterEvents(RemovePendingSizeEvents, &event);
}
if (windowevent == SDL_WINDOWEVENT_MOVED) {
Expand Down

0 comments on commit bde675e

Please sign in to comment.