mirror of
https://github.com/revanced/smali.git
synced 2025-05-29 12:20:11 +02:00
Fix an issue when calculating the line and address diff
git-svn-id: https://smali.googlecode.com/svn/trunk@361 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
866267dfb7
commit
5805483912
@ -231,7 +231,7 @@ public class DebugInstructionIterator {
|
|||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
byte base = (byte)((debugOpcode & 0xFF) - 0x0A);
|
int base = ((debugOpcode & 0xFF) - 0x0A);
|
||||||
address += base / 15;
|
address += base / 15;
|
||||||
line += (base % 15) - 4;
|
line += (base % 15) - 4;
|
||||||
processDecodedDebugInstruction.ProcessLineEmit(address, line);
|
processDecodedDebugInstruction.ProcessLineEmit(address, line);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user