Update sdl.c

This commit is contained in:
Jason Bou-Samra
2024-08-16 20:41:35 +10:00
committed by GitHub
parent 0e4e8817bc
commit aa0ea3f66d
+1 -1
View File
@@ -40,7 +40,7 @@ if (window == NULL) {
} }
/////////////////////// SHUTDOWN SDL ///////////////////////// /////////////////////// SHUTDOWN SDL /////////////////////////
int shutdownSDL () { int shutdownSDL (void) {
SDL_DestroyWindow (window); // free memory SDL_DestroyWindow (window); // free memory
SDL_Quit (); // shutdown entire sdl sub-systems SDL_Quit (); // shutdown entire sdl sub-systems
return 0; return 0;