From 807d67862c7665addbc3c84f5bde96d709450b9d Mon Sep 17 00:00:00 2001 From: CuriousTorvald Date: Sat, 28 Nov 2020 19:32:50 +0900 Subject: [PATCH] for gods sake don't casually usegl30=true https://stackoverflow.com/questions/46753218/libgdx-should-i-use-gl30 --- src/net/torvald/terrarum/AppLoader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/torvald/terrarum/AppLoader.java b/src/net/torvald/terrarum/AppLoader.java index a9d6a2fe0..98a8ef024 100644 --- a/src/net/torvald/terrarum/AppLoader.java +++ b/src/net/torvald/terrarum/AppLoader.java @@ -315,7 +315,7 @@ public class AppLoader implements ApplicationListener { ShaderProgram.pedantic = false; LwjglApplicationConfiguration appConfig = new LwjglApplicationConfiguration(); - appConfig.useGL30 = true; // utilising some GL trickeries, need this to be TRUE + appConfig.useGL30 = false; // utilising some GL trickeries, need this to be TRUE appConfig.vSyncEnabled = getConfigBoolean("usevsync"); appConfig.resizable = false;//true; appConfig.width = getConfigInt("screenwidth"); @@ -1238,4 +1238,4 @@ public class AppLoader implements ApplicationListener { public static long getTIME_T() { return System.currentTimeMillis() / 1000L; } -} \ No newline at end of file +}