mirror of
https://github.com/revanced/revanced-patches
synced 2025-01-02 18:15:48 +01:00
fix: print instruction index of warning
This commit is contained in:
parent
e5a609f716
commit
9e29aeeeff
@ -35,7 +35,7 @@ internal class SignatureChecker {
|
||||
for (i in (warning.actualIndex - 5).coerceAtLeast(0) until warning.actualIndex) {
|
||||
println("$i: ${instructions[i].opcode}")
|
||||
}
|
||||
println(warning.toString())
|
||||
println("${warning.actualIndex}: $warning")
|
||||
for (i in warning.actualIndex + 1 until (warning.actualIndex + 5).coerceAtMost(instructions.size)) {
|
||||
println("$i: ${instructions[i].opcode}")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user