Commit 0e5cb512 authored by Sam Lantinga's avatar Sam Lantinga

indent

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403327
parent 8437f9f8
...@@ -527,9 +527,9 @@ SDL_HelperWindowDestroy(void) ...@@ -527,9 +527,9 @@ SDL_HelperWindowDestroy(void)
/* Destroy the window. */ /* Destroy the window. */
if (SDL_HelperWindow != NULL) { if (SDL_HelperWindow != NULL) {
if (DestroyWindow(SDL_HelperWindow) == 0) { if (DestroyWindow(SDL_HelperWindow) == 0) {
SDL_SetError("Unable to destroy Helper Window: error %d.", SDL_SetError("Unable to destroy Helper Window: error %d.",
GetLastError()); GetLastError());
return; return;
} }
SDL_HelperWindow = NULL; SDL_HelperWindow = NULL;
} }
...@@ -537,9 +537,9 @@ SDL_HelperWindowDestroy(void) ...@@ -537,9 +537,9 @@ SDL_HelperWindowDestroy(void)
/* Unregister the class. */ /* Unregister the class. */
if (SDL_HelperWindowClass != 0) { if (SDL_HelperWindowClass != 0) {
if ((UnregisterClass(SDL_HelperWindowClassName, hInstance)) == 0) { if ((UnregisterClass(SDL_HelperWindowClassName, hInstance)) == 0) {
SDL_SetError("Unable to destroy Helper Window Class: error %d.", SDL_SetError("Unable to destroy Helper Window Class: error %d.",
GetLastError()); GetLastError());
return; return;
} }
SDL_HelperWindowClass = 0; SDL_HelperWindowClass = 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment