Fixed an issue with the 35c format, where it returned the wrong value for the 4th register

git-svn-id: https://smali.googlecode.com/svn/trunk@197 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com
2009-06-21 06:19:27 +00:00
parent 8ff7f345ae
commit 87160fc91d

View File

@ -116,7 +116,7 @@ public class Instruction35c extends Instruction
}
public byte getRegisterG() {
return NumberUtils.decodeLowUnsignedNibble(encodedInstruction[5]);
return NumberUtils.decodeHighUnsignedNibble(encodedInstruction[5]);
}
private void checkItem() {