mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 04:27:38 +02:00
use the address, not the address delta when calling emitAdvancePC
git-svn-id: https://smali.googlecode.com/svn/trunk@425 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
@ -270,7 +270,7 @@ public class DebugInfoBuilder
|
|||||||
lineDelta = 0;
|
lineDelta = 0;
|
||||||
}
|
}
|
||||||
if (lineDelta < 2 && addressDelta > 16 || lineDelta > 1 && addressDelta > 15) {
|
if (lineDelta < 2 && addressDelta > 16 || lineDelta > 1 && addressDelta > 15) {
|
||||||
emitAdvancePC(out, addressDelta);
|
emitAdvancePC(out, address);
|
||||||
addressDelta = 0;
|
addressDelta = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user