mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 04:17:36 +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;
|
||||
}
|
||||
if (lineDelta < 2 && addressDelta > 16 || lineDelta > 1 && addressDelta > 15) {
|
||||
emitAdvancePC(out, addressDelta);
|
||||
emitAdvancePC(out, address);
|
||||
addressDelta = 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user