Trim some stray whitespace

This commit is contained in:
Dean Herbert 2021-04-02 12:48:02 +09:00 committed by Sam Lantinga
parent 170924278d
commit 3720e254c4
1 changed files with 3 additions and 3 deletions

View File

@ -162,7 +162,7 @@ WIN_SetWindowPositionInternal(_THIS, SDL_Window * window, UINT flags)
top = HWND_NOTOPMOST; top = HWND_NOTOPMOST;
} }
WIN_AdjustWindowRect(window, &x, &y, &w, &h, SDL_TRUE); WIN_AdjustWindowRect(window, &x, &y, &w, &h, SDL_TRUE);
data->expected_resize = SDL_TRUE; data->expected_resize = SDL_TRUE;
SetWindowPos(hwnd, top, x, y, w, h, flags); SetWindowPos(hwnd, top, x, y, w, h, flags);
@ -364,7 +364,7 @@ WIN_CreateWindow(_THIS, SDL_Window * window)
return 0; return 0;
#else #else
return SDL_SetError("Could not create GLES window surface (EGL support not configured)"); return SDL_SetError("Could not create GLES window surface (EGL support not configured)");
#endif /* SDL_VIDEO_OPENGL_EGL */ #endif /* SDL_VIDEO_OPENGL_EGL */
} }
#endif /* SDL_VIDEO_OPENGL_ES2 */ #endif /* SDL_VIDEO_OPENGL_ES2 */
@ -559,7 +559,7 @@ WIN_ShowWindow(_THIS, SDL_Window * window)
DWORD style; DWORD style;
HWND hwnd; HWND hwnd;
int nCmdShow; int nCmdShow;
hwnd = ((SDL_WindowData *)window->driverdata)->hwnd; hwnd = ((SDL_WindowData *)window->driverdata)->hwnd;
nCmdShow = SW_SHOW; nCmdShow = SW_SHOW;
style = GetWindowLong(hwnd, GWL_EXSTYLE); style = GetWindowLong(hwnd, GWL_EXSTYLE);