Skip to content

Commit

Permalink
Add temporary disablement of LWJGL checks on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcsmith-net committed Oct 6, 2024
1 parent 0510947 commit 38d2be7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions praxiscore-bin/src/main/java/org/praxislive/bin/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
public class Main {

public static void main(String[] args) {
// @TODO replace with flag to disable hash checks when available
if (System.getProperty("os.name", "").contains("Mac")) {
System.setProperty("org.lwjgl.util.NoChecks", "true");
}
Launcher.main(new LauncherCtxt(), args);
}

Expand Down

0 comments on commit 38d2be7

Please sign in to comment.