From 2c3657a0cec29be70c4b5e8c8fea9c2fa89023a3 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Wed, 17 Dec 2025 17:27:51 -0500
Subject: [PATCH] egl: Patched to compile.
Yeehaw, cowboy committer! :facepalm:
---
src/video/SDL_egl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/video/SDL_egl.c b/src/video/SDL_egl.c
index c4ecb0c3e97d9..85fb2374c3fc2 100644
--- a/src/video/SDL_egl.c
+++ b/src/video/SDL_egl.c
@@ -1144,7 +1144,7 @@ SDL_GLContext SDL_EGL_CreateContext(SDL_VideoDevice *_this, EGLSurface egl_surfa
}
}
- SDL_EGL_SetSwapInterval(0); // EGL tends to default to vsync=1. To make this consistent with the rest of SDL, we force it off at startup. Apps can explicitly enable it afterwards.
+ SDL_EGL_SetSwapInterval(_this, 0); // EGL tends to default to vsync=1. To make this consistent with the rest of SDL, we force it off at startup. Apps can explicitly enable it afterwards.
return (SDL_GLContext)egl_context;
}