Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 13, 2008
1 parent 5415308 commit f5453dd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/video/win32/SDL_win32window.c
Expand Up @@ -527,19 +527,19 @@ SDL_HelperWindowDestroy(void)
/* Destroy the window. */
if (SDL_HelperWindow != NULL) {
if (DestroyWindow(SDL_HelperWindow) == 0) {
SDL_SetError("Unable to destroy Helper Window: error %d.",
GetLastError());
return;
SDL_SetError("Unable to destroy Helper Window: error %d.",
GetLastError());
return;
}
SDL_HelperWindow = NULL;
}

/* Unregister the class. */
if (SDL_HelperWindowClass != 0) {
if ((UnregisterClass(SDL_HelperWindowClassName, hInstance)) == 0) {
SDL_SetError("Unable to destroy Helper Window Class: error %d.",
GetLastError());
return;
SDL_SetError("Unable to destroy Helper Window Class: error %d.",
GetLastError());
return;
}
SDL_HelperWindowClass = 0;
}
Expand Down

0 comments on commit f5453dd

Please sign in to comment.