fix lt comparison

This commit is contained in:
Adam
2015-08-09 13:06:42 -04:00
parent b9410f76a5
commit 1090dfee7e

View File

@@ -201,7 +201,7 @@ public class ConstantParameter implements Deobfuscator
case IFGT:
return (int) value > 0;
case IFLE:
return (int) value < 0;
return (int) value <= 0;
case IF_ICMPEQ:
return value.equals(otherValue);
case IF_ICMPNE: