Skip to content

Commit c1a1756

Browse files
committed
Use version util when comparing GLFW versions
Signed-off-by: Lilly Rose Berner <lilly@lostluma.net>
1 parent d821b7d commit c1a1756

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

platforms/common/src/main/java/dynamic_fps/impl/compat/GLFW.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package dynamic_fps.impl.compat;
22

33
import dynamic_fps.impl.DynamicFPSMod;
4+
import dynamic_fps.impl.util.Version;
45
import net.minecraft.client.Minecraft;
56

67
public class GLFW {
@@ -40,16 +41,16 @@ private static boolean useWorkaround() {
4041
}
4142

4243
private static boolean isEnterEventBroken() {
43-
int[] version = getGLFWVersion();
44-
return !(version[0] > 3 || version[0] == 3 && version[1] > 3);
44+
Version active = getGLFWVersion();
45+
return active.compareTo(Version.of(3, 3, 0)) < 0; // Versions before 3.3.0 are broken
4546
}
4647

47-
private static int[] getGLFWVersion() {
48+
private static Version getGLFWVersion() {
4849
int[] major = new int[1];
4950
int[] minor = new int[1];
5051
int[] patch = new int[1];
5152

5253
org.lwjgl.glfw.GLFW.glfwGetVersion(major, minor, patch);
53-
return new int[]{major[0], minor[0], patch[0]}; // This is kinda silly ...
54+
return Version.of(major[0], minor[0], patch[0]);
5455
}
5556
}

platforms/common/src/main/java/dynamic_fps/impl/util/Version.java

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ private Version(int major, int minor, int patch, @Nullable String preRelease, @N
2525
this.buildMetadata = buildMetadata;
2626
}
2727

28+
public static Version of(int major, int minor, int patch) {
29+
return new Version(major, minor, patch, null, null);
30+
}
31+
2832
public static Version of(String raw) throws VersionParseException {
2933
Matcher matcher = VERSION_PATTERN.matcher(raw);
3034

0 commit comments

Comments
 (0)