diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-14 10:37:37 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-14 10:37:37 -0800 |
commit | d7db26f9d1973d42dc8415f228c521ff90010b8e (patch) | |
tree | 973ff5696914c9dea9249e760919a994564c93e1 /tests/hello_world_sdl.cpp | |
parent | 989a5ed2822ca07053cd046172352763c6998d08 (diff) |
make SQL_Quit a no-op
Diffstat (limited to 'tests/hello_world_sdl.cpp')
-rw-r--r-- | tests/hello_world_sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hello_world_sdl.cpp b/tests/hello_world_sdl.cpp index a317c0c5..f3fb8ae7 100644 --- a/tests/hello_world_sdl.cpp +++ b/tests/hello_world_sdl.cpp @@ -22,7 +22,7 @@ int main() { printf("you should see a colored cube."); - // SDL_Quit(); // Don't call SDL_Quit so that the canvas is not cleared + SDL_Quit(); return 0; } |