Skip to content

Commit

Permalink
Update FMTB.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Fexcraft committed Feb 11, 2020
1 parent abc9d62 commit 8230282
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/net/fexcraft/app/fmt/FMTB.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ public class FMTB {

public static void main(String... args) throws Exception {
switch(LWJGLUtil.getPlatform()){
case LWJGLUtil.PLATFORM_WINDOWS:{ lwjgl_natives = new File("./libs/native/windows"); break; }
case LWJGLUtil.PLATFORM_LINUX:{ lwjgl_natives = new File("./libs/native/linux"); break; }
case LWJGLUtil.PLATFORM_MACOSX:{
case LWJGLUtil.PLATFORM_WINDOWS: lwjgl_natives = new File("./libs/native/windows"); break;
case LWJGLUtil.PLATFORM_LINUX: lwjgl_natives = new File("./libs/native/linux"); break;
case LWJGLUtil.PLATFORM_MACOSX:
System.setProperty("apple.awt.fullscreenhidecursor", "false");
lwjgl_natives = new File("./libs/native/macosx"); break;
}
lwjgl_natives = new File("./libs/native/macosx");
break;
}
System.setProperty("org.lwjgl.librarypath", lwjgl_natives.getAbsolutePath());
//
Expand Down

0 comments on commit 8230282

Please sign in to comment.