mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 15:04:41 +00:00
AppletLoader: fix bug with al_version (should work correctly now). Thx to pjohnsen for spotting it.
This commit is contained in:
parent
7023a35bac
commit
46c69be952
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue