ReversePolarity How do I cheat?
Reputation: 0
Joined: 11 Mar 2016 Posts: 1
|
Posted: Fri Mar 11, 2016 12:14 pm Post subject: Data is written to address but does not Break on Write |
|
|
I am looking for the place a variable is being manipulated. This variable seems to be read and allocated only when it is printed on screen.
So as I enter the screen that prints this variable I break on the memory region the rendered text is written to. Everything very simple and straightforward so far.
I have backtracked and identified another position in memory that the text is copied from. Now I want to know which function generates the text on this source position.
I set a conditional (simple) breakpoint at the middle of the string. The condition is:
| Code: | | readBytes(sourceStringAddr, half, false) == halfStringBytes |
It does not break.
I have checked several times and the source of the text is being written on this exact memory position every single time.
What am I doing wrong?
|
|