Fix linux issue on desktop runtime

This commit is contained in:
eaglercraft 2024-11-09 16:37:13 -08:00
commit 59fde5b457
4 changed files with 4 additions and 2 deletions

View file

@ -336,8 +336,7 @@ public class PlatformRuntime {
private static boolean probablyGLES2(String glVersion) {
if(glVersion == null) return false;
glVersion = glVersion.toLowerCase();
return glVersion.contains("opengl es 2.0") || glVersion.contains("ES 2.0");
return glVersion.toLowerCase().contains("opengl es 2.0") || glVersion.contains("ES 2.0");
}
public static EnumPlatformType getPlatformType() {