mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Fix bug with JS long emulator
This commit is contained in:
parent
861742a2fb
commit
d5e9168323
|
@ -687,9 +687,6 @@ function Long_le(a, b) {
|
|||
if (a.hi < b.hi) {
|
||||
return true;
|
||||
}
|
||||
if ((a.lo >>> 1) <= (b.lo >>> 1)) {
|
||||
return true;
|
||||
}
|
||||
var x = a.lo >>> 1;
|
||||
var y = b.lo >>> 1;
|
||||
if (x != y) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user