From 337ec6bca63c3bf8a7c14948cbb6c4c05194d826 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 3 May 2024 21:41:02 +0200 Subject: [PATCH] impr: Better OpenGL texture load error messages --- lib/libimhex/source/ui/imgui_imhex_extensions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/libimhex/source/ui/imgui_imhex_extensions.cpp b/lib/libimhex/source/ui/imgui_imhex_extensions.cpp index 3d60b929f..7ea6a2efc 100644 --- a/lib/libimhex/source/ui/imgui_imhex_extensions.cpp +++ b/lib/libimhex/source/ui/imgui_imhex_extensions.cpp @@ -84,7 +84,6 @@ namespace ImGuiExt { return texture; if (!isOpenGLExtensionSupported("GL_ARB_texture_multisample")) { - hex::log::error("Platform does not support texture multisample! Bailing out!"); return texture; } @@ -111,7 +110,7 @@ namespace ImGuiExt { // Check framebuffer status if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { - hex::log::error("Platform claim to support texture multisample but the API is failing! Bailing out!"); + hex::log::error("Driver claims to support texture multisampling but it's not working"); return texture; }