mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 04:27:38 +02:00
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:
@ -116,7 +116,7 @@ public class Instruction35c extends Instruction
|
|||||||
}
|
}
|
||||||
|
|
||||||
public byte getRegisterG() {
|
public byte getRegisterG() {
|
||||||
return NumberUtils.decodeLowUnsignedNibble(encodedInstruction[5]);
|
return NumberUtils.decodeHighUnsignedNibble(encodedInstruction[5]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkItem() {
|
private void checkItem() {
|
||||||
|
Reference in New Issue
Block a user