From 27214764335906e7dc22f04be0c6c16489dc6b30 Mon Sep 17 00:00:00 2001 From: gendlin <108626604+gendlin@users.noreply.github.com> Date: Sat, 8 Jun 2024 23:36:06 -0400 Subject: [PATCH] Disable SDL render batching by default (#1733) --- src/i_video.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i_video.c b/src/i_video.c index 9256b56f..2035edb2 100644 --- a/src/i_video.c +++ b/src/i_video.c @@ -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);