GLEW tweaks

This commit is contained in:
Anuken
2020-03-27 09:00:28 -04:00
parent 643d054294
commit 69323707cc
2 changed files with 2 additions and 2 deletions

View File

@@ -189,7 +189,7 @@ public class DesktopLauncher extends ClientLauncher{
e.getMessage().contains("Couldn't create window") ? "A graphics initialization error has occured! Try to update your graphics drivers:\n" + e.getMessage() :
"Your graphics card does not support OpenGL 2.0 with the framebuffer_object extension!\n" +
"Try to update your graphics drivers. If this doesn't work, your computer may not support Mindustry.\n\n" +
"Full message: " + e.getMessage()));
"Full message: " + Strings.getCauses(e).map(t -> t.getMessage() == null ? "" : t.getMessage()).toString("\n")));
badGPU = true;
}