So I am debugging in VS, setting breakpoints inside an xex. What I am trying to do is use the "When hit" option to print messages to the output window when the breakpoint is hit. The goal is to get it to print a string that the register I am tracking is pointing to.

Result::
CODE
namePointer = 0x00000000b631ddb5
namePointer = 0x000000007001cb90
namePointer = 0x000000007001bed0
Changing the above message to "namePointer = {r4,s} || namePointer = {r4,x}" results in:
CODE
namePointer = -75 'µ' || namePointer = 0x00000000b631ddb5
namePointer = -112 '.' || namePointer = 0x000000007001cb90
namePointer = -48 'Ð' || namePointer = 0x000000007001bed0
Anyone know if there is any way to get it to print the string that the register points to?