mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 12:17:37 +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() {
|
||||
return NumberUtils.decodeLowUnsignedNibble(encodedInstruction[5]);
|
||||
return NumberUtils.decodeHighUnsignedNibble(encodedInstruction[5]);
|
||||
}
|
||||
|
||||
private void checkItem() {
|
||||
|
Reference in New Issue
Block a user