avoid double SDL_Quit() (#625)

`SDL_Quit` is already called by the smart pointer de-constructor

Co-authored-by: Turánszki János <turanszkij@users.noreply.github.com>
This commit is contained in:
Matteo De Carlo
2023-01-17 17:07:32 +01:00
committed by GitHub
parent 4b7bc04b9e
commit b09d30a32f
-1
View File
@@ -160,6 +160,5 @@ int main(int argc, char *argv[])
int ret = sdl_loop(editor);
SDL_Quit();
return ret;
}