This commit is contained in:
Imgaojp 2017-02-22 10:14:39 +08:00
parent 675d9fd807
commit 096d9c4ca4

View File

@ -267,7 +267,7 @@ public class OperandsInstruction implements Instruction {
@Override
public void execute(Frame frame) {
frame.getOperandStack().pushInt((int) val);
frame.getOperandStack().pushInt((short) val);
}
}