From db836d0ca4459c00540fa251a7078b0fe24bdecc Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:19:18 +1000 Subject: [PATCH] Update StarRenderer_opengl.cpp --- source/application/StarRenderer_opengl.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/application/StarRenderer_opengl.cpp b/source/application/StarRenderer_opengl.cpp index 2e1c47d..a22bb35 100644 --- a/source/application/StarRenderer_opengl.cpp +++ b/source/application/StarRenderer_opengl.cpp @@ -90,8 +90,9 @@ static void GLAPIENTRY GlMessageCallback(GLenum, GLenum type, GLuint, GLenum, GL */ OpenGlRenderer::OpenGlRenderer() { - if (glewInit() != GLEW_OK) - throw RendererException("Could not initialize GLEW"); + auto result = glewInit(); + if (result != GLEW_OK) + throw RendererException::format("Could not initialize GLEW: {}", (char*)glewGetErrorString(result)); if (!GLEW_VERSION_2_0) throw RendererException("OpenGL 2.0 not available!");