AppletLoader: slight tweak to the behaviour of al_version

This commit is contained in:
kappa1 2010-08-28 13:47:18 +00:00
parent bca5e48ea7
commit 94fa701973
1 changed files with 2 additions and 2 deletions

View File

@ -721,7 +721,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
// if version file exists
if (versionFile.exists()) {
// compare to new version
if (latestVersion <= readVersionFile(versionFile)) {
if (latestVersion != readVersionFile(versionFile)) {
versionAvailable = true;
percentage = 90;
@ -892,7 +892,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
// Make sure jinput knows about the new path too
System.setProperty("net.java.games.input.librarypath", path + "natives");
// set the library path, should make it easier when using additional custom natives
// set the library path, useful for non lwjgl natives
System.setProperty("java.library.path", path + "natives");
// mark natives as loaded