diff --git a/desktop/src/mindustry/desktop/DesktopLauncher.java b/desktop/src/mindustry/desktop/DesktopLauncher.java index 6c54691e0f..7b5f824db2 100644 --- a/desktop/src/mindustry/desktop/DesktopLauncher.java +++ b/desktop/src/mindustry/desktop/DesktopLauncher.java @@ -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; } diff --git a/gradle.properties b/gradle.properties index dadde32ebe..32a3974fb7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ org.gradle.daemon=true org.gradle.jvmargs=-Xms256m -Xmx1024m -archash=dd0f2c60c53919ce97c987e502acf94af3a9a2b4 +archash=670ff2275995a11566a81a9cdaeb1468e7cf2042