AppletLoader: fix bug with al_version (should work correctly now). Thx to pjohnsen for spotting it.

This commit is contained in:
kappa1 2011-03-26 15:54:52 +00:00
parent 7023a35bac
commit 46c69be952
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
// if version file exists
if (versionFile.exists()) {
// compare to new version
if (latestVersion != readFloatFile(versionFile)) {
if (latestVersion == readFloatFile(versionFile)) {
versionAvailable = true;
percentage = 90;