Disable SDL render batching by default (#1733)

This commit is contained in:
gendlin 2024-06-08 23:36:06 -04:00 committed by GitHub
parent 06f3324f99
commit 2721476433
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1787,6 +1787,7 @@ void I_InitGraphics(void)
{
I_Error("Failed to initialize video: %s", SDL_GetError());
}
SDL_SetHint("SDL_HINT_RENDER_BATCHING", "0");
I_AtExit(I_ShutdownGraphics, true);