From e9eceebbccff6c53034874b2cce2cb5cb5c2b761 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 8 Jul 2024 15:25:25 +0200 Subject: [PATCH] vdisp/gl: print actual GL version in verbose --- src/video_display/gl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video_display/gl.cpp b/src/video_display/gl.cpp index caba0e004..3772f45a2 100644 --- a/src/video_display/gl.cpp +++ b/src/video_display/gl.cpp @@ -1454,6 +1454,7 @@ static bool display_gl_check_gl_version() { return false; } log_msg(LOG_LEVEL_INFO, MOD_NAME "OpenGL 2.0 is supported...\n"); + MSG(VERBOSE, "Supported OpenGL version is %s.\n", version); return true; }