I'm new to reverse engineering and i'm trying to change a
__text:001C2BE4 jz loc_1C3180
which jumps to
__text:001C3180 loc_1C3180:
into a jump to another subroutine. (__text:00128DC0 sub_128DC0:
)
However, I don't yet understand how to do this. I can change assembly by editing the hex values but as loc_*
is just a name given to the subroutine by IDA I don't know how to do this.
Could someone explain how to go about changing the destination of a jz
?
Thanks.