changeset 13533 | 867352e06641 |
parent 13519 | f22dd67ec07b |
child 13534 | 24e8a27fa627 |
1.1 --- a/src/video/x11/SDL_x11window.c Sun Feb 16 00:08:36 2020 -0800 1.2 +++ b/src/video/x11/SDL_x11window.c Mon Feb 17 15:00:02 2020 -0500 1.3 @@ -835,6 +835,8 @@ 1.4 window->x = x; 1.5 window->y = y; 1.6 break; /* window moved, time to go. */ 1.7 + } else if ((x == window->x) && (y == window->y)) { 1.8 + break; /* we're at the place we wanted to be anyhow, drop out. */ 1.9 } 1.10 1.11 SDL_Delay(10);