SourMesen / Mesen

Mesen is a cross-platform (Windows & Linux) NES/Famicom emulator built in C++ and C#
https://www.mesen.ca
GNU General Public License v3.0
1.25k stars 317 forks source link

Debugger: Can't figure out how to turn off "label" display #792

Closed binarycow closed 4 years ago

binarycow commented 4 years ago

Hello,

Somehow I inadvertently actived some form of "label" display in the debugger. In the below screenshot, on line C5FD, the disassembly is JSR F072D = $EA. This used to display as JSR $872D = $EA.

I remember toggling an option, and decided I did not like the changed behavior, and turned it off. After restarting either the debugger, or Mesen as a whole, the label display is shown, and I can't find the option to turn it off. (I swear, I poked around the debugger - nothing I changed seemed to take effect!)

image

SourMesen commented 4 years ago

That looks like the "Create automatic jump label" option? Once they are created, they are real labels. You'll need to delete them, either by resetting the workspace's labels (there's an option for this under "File"), or manually selecting and deleting them from the label list (you might need to right-click on the label list and enable the option to show the automatic labels before you can do this)

Hope that helps,