Skip to content

Commit

Permalink
Fix incompatibillity of LWJGL2 with the upcoming Java 16
Browse files Browse the repository at this point in the history
LWJGL 2 is outdated, I got no idea why Galimulator is still using
But I don't really care about it, do I?
  • Loading branch information
Geolykt committed Mar 9, 2021
1 parent cd91da0 commit a9b0404
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 318 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Ignore Gradle build output directory
build/
bin/

# Ignore the galimulator jar - which we are not allowed to distribute
galimulator-desktop.jar
Expand Down
54 changes: 0 additions & 54 deletions obfinfo

This file was deleted.

264 changes: 0 additions & 264 deletions proposed-names

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,10 @@ public void removeChildInHierarchy(MinestomExtensionClassLoader child) {
children.remove(child);
children.forEach(c -> c.removeChildInHierarchy(child));
}

@Override
public String findLibrary(String libname) {
// We are increasing the visibility of this method knowingly to suppress an issue with LWJGL running code it shouldn't run.
return super.findLibrary(libname);
}
}

0 comments on commit a9b0404

Please sign in to comment.