Sfoglia il codice sorgente

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

Ryan C. Gordon 5 anni fa
parent
commit
50fd0dd143
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  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);
 }