From 731cad7553d1116d991a69f69bdbd416ec249983 Mon Sep 17 00:00:00 2001 From: Professor Hastig Date: Wed, 25 Oct 2023 07:54:08 +0200 Subject: [PATCH] do not print all GL extensions to the log for the GLES renderer. --- src/common/rendering/gles/gles_system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/rendering/gles/gles_system.cpp b/src/common/rendering/gles/gles_system.cpp index bb7d61687e..d9bedafdd7 100644 --- a/src/common/rendering/gles/gles_system.cpp +++ b/src/common/rendering/gles/gles_system.cpp @@ -158,7 +158,7 @@ namespace OpenGLESRenderer Printf(PRINT_LOG, "GL_EXTENSIONS:\n"); for (unsigned i = 0; i < m_Extensions.Size(); i++) { - Printf(" %s\n", m_Extensions[i].GetChars()); + Printf(PRINT_LOG, " %s\n", m_Extensions[i].GetChars()); } const char* glVersionStr = (const char*)glGetString(GL_VERSION); double glVersion = strtod(glVersionStr, NULL);