Browse Source

test: testspriteminimal wasn't calling SDL_Quit() on exit.

Ryan C. Gordon 4 years ago
parent
commit
50fd0dd143
1 changed files with 1 additions and 0 deletions
  1. 1 0
      test/testspriteminimal.c

+ 1 - 0
test/testspriteminimal.c

@@ -38,6 +38,7 @@ int done;
 static void
 quit(int rc)
 {
+    SDL_Quit();
     exit(rc);
 }