Mercurial > sdl-ios-xcode
changeset 2865:09adf4854163
indent
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 13 Dec 2008 06:27:58 +0000 |
parents | fe8ea2b39aea |
children | e532417a6977 |
files | src/video/win32/SDL_win32window.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/win32/SDL_win32window.c Sat Dec 13 04:11:24 2008 +0000 +++ b/src/video/win32/SDL_win32window.c Sat Dec 13 06:27:58 2008 +0000 @@ -527,9 +527,9 @@ /* 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; } @@ -537,9 +537,9 @@ /* 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; }