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

This commit is contained in:
Ryan C. Gordon 2020-06-26 21:35:54 -04:00
parent 1947ca7028
commit 50fd0dd143

View file

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