Removed carriage returns from previous patch
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
diff --git a/src/video/windows/SDL_windowsevents.c b/src/video/windows/SDL_windowsevents.c
index 5d989a5..b043155 100644
--- a/src/video/windows/SDL_windowsevents.c
+++ b/src/video/windows/SDL_windowsevents.c
@@ -1077,23 +1077,23 @@ SDL_RegisterApp(char *name, Uint32 style, void *hInst)
}
/* Register the application class */
- wcex.cbSize = sizeof(WNDCLASSEX);
- wcex.hCursor = NULL;
- wcex.hIcon = NULL;
- wcex.hIconSm = NULL;
- wcex.lpszMenuName = NULL;
- wcex.lpszClassName = SDL_Appname;
- wcex.style = SDL_Appstyle;
- wcex.hbrBackground = NULL;
- wcex.lpfnWndProc = WIN_WindowProc;
- wcex.hInstance = SDL_Instance;
- wcex.cbClsExtra = 0;
- wcex.cbWndExtra = 0;
-
- /* Use the first icon as a default icon, like in the Explorer */
- GetModuleFileName(SDL_Instance, path, MAX_PATH);
- ExtractIconEx(path, 0, &wcex.hIcon, &wcex.hIconSm, 1);
-
+ wcex.cbSize = sizeof(WNDCLASSEX);
+ wcex.hCursor = NULL;
+ wcex.hIcon = NULL;
+ wcex.hIconSm = NULL;
+ wcex.lpszMenuName = NULL;
+ wcex.lpszClassName = SDL_Appname;
+ wcex.style = SDL_Appstyle;
+ wcex.hbrBackground = NULL;
+ wcex.lpfnWndProc = WIN_WindowProc;
+ wcex.hInstance = SDL_Instance;
+ wcex.cbClsExtra = 0;
+ wcex.cbWndExtra = 0;
+
+ /* Use the first icon as a default icon, like in the Explorer */
+ GetModuleFileName(SDL_Instance, path, MAX_PATH);
+ ExtractIconEx(path, 0, &wcex.hIcon, &wcex.hIconSm, 1);
+
if (!RegisterClassEx(&wcex)) {
return SDL_SetError("Couldn't register application class");
}