Flip this around to do the simpler condition first.

main
Ryan C. Gordon 2014-05-24 18:23:56 -04:00
parent 668025c239
commit ded970f70f
1 changed files with 2 additions and 2 deletions

View File

@ -745,8 +745,8 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
x = (int)point.x; x = (int)point.x;
y = (int)(window->h - point.y); y = (int)(window->h - point.y);
if (x < 0 || x >= window->w || y < 0 || y >= window->h) { if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
if (window->flags & SDL_WINDOW_INPUT_GRABBED) { if (x < 0 || x >= window->w || y < 0 || y >= window->h) {
if (x < 0) { if (x < 0) {
x = 0; x = 0;
} else if (x >= window->w) { } else if (x >= window->w) {