Fix bug 3436 - SDL_RaiseWindow not working on windows
diff --git a/src/video/windows/SDL_windowswindow.c b/src/video/windows/SDL_windowswindow.c
index fe52a54..117ce2b 100644
--- a/src/video/windows/SDL_windowswindow.c
+++ b/src/video/windows/SDL_windowswindow.c
@@ -478,7 +478,8 @@
 void
 WIN_RaiseWindow(_THIS, SDL_Window * window)
 {
-    WIN_SetWindowPositionInternal(_this, window, SWP_NOCOPYBITS | SWP_NOMOVE | SWP_NOSIZE);
+	HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd;
+	SetForegroundWindow(hwnd);
 }
 
 void