From 9d56cf94cda8a02a445e756f5ba9b5bd172fee0f Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 26 Feb 2025 23:01:20 +1100 Subject: [PATCH] Fix --- src/_WindowBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_WindowBase.h b/src/_WindowBase.h index 3c1064a97..5fece17f2 100644 --- a/src/_WindowBase.h +++ b/src/_WindowBase.h @@ -142,7 +142,7 @@ static void DumpEGLConfig(EGLConfig config) { eglGetConfigAttrib(ctx_display, config, EGL_RENDERABLE_TYPE, &mode); Platform_Log4("EGL R:%i, G:%i, B:%i, A:%i", &red, &green, &blue, &alpha); - Platform_Log2("EGL D: %i, V: %h, S: %h", &depth, &vid, &mode); + Platform_Log3("EGL D: %i, V: %h, S: %h", &depth, &vid, &mode); } static void ChooseEGLConfig(EGLConfig* configs, EGLint num_configs) {