mirror of
https://github.com/revanced/smali.git
synced 2025-05-09 10:54:29 +02:00
use decodeHighUnsignedNibble instead of decodeHighSignedNibble for regB in Instruction22t
git-svn-id: https://smali.googlecode.com/svn/trunk@512 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
311ee79fab
commit
01318cded8
@ -65,7 +65,7 @@ public class Instruction22t extends Instruction implements OffsetInstruction, Tw
|
||||
assert buffer[bufferIndex] == opcode.value;
|
||||
|
||||
regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
|
||||
regB = NumberUtils.decodeHighSignedNibble(buffer[bufferIndex + 1]);
|
||||
regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
|
||||
offset = NumberUtils.decodeShort(buffer, bufferIndex + 2);
|
||||
|
||||
assert offset != 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user