missed define

This commit is contained in:
marauder2k7 2023-07-25 13:30:53 +01:00
parent 564d48e95f
commit f2292a6a1f
2 changed files with 7 additions and 1 deletions

View file

@ -97,6 +97,12 @@ bool Platform::displaySplashWindow( String path )
SDL_RenderPresent(gSplashRenderer);
SDL_DestroyTexture(gSplashTexture);
gSplashTexture = nullptr;
SDL_DestroyRenderer(gSplashRenderer);
gSplashRenderer = nullptr;
}
return true;