Skip to content

Commit

Permalink
replace remaining instances of that confusing comment with my verbiage
Browse files Browse the repository at this point in the history
  • Loading branch information
warmCabin committed Jun 28, 2021
1 parent 32c6fbd commit abf52c8
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/drivers/win/debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ void UpdateDebugger(bool jump_to_pc)
}


// "Address Bookmark Add" follows the address
// The address in the Add Bookmark textbox follows the scroll pos.

// Update register values
sprintf(str, "%02X", X.A);
Expand Down Expand Up @@ -2092,7 +2092,7 @@ void DebuggerBnClicked(HWND hwndDlg, uint16 btnId, HWND hwndBtn)
sprintf(str,"%04X", tmp);
SetDlgItemText(hwndDlg,IDC_DEBUGGER_VAL_PCSEEK,str);
Disassemble(hDebug, IDC_DEBUGGER_DISASSEMBLY, IDC_DEBUGGER_DISASSEMBLY_VSCR, tmp);
// "Address Bookmark Add" follows the address
// The address in the Add Bookmark textbox follows the scroll pos.
sprintf(str,"%04X", si.nPos);
SetDlgItemText(hDebug, IDC_DEBUGGER_BOOKMARK, str);
}
Expand Down Expand Up @@ -2126,9 +2126,6 @@ void DebuggerBnClicked(HWND hwndDlg, uint16 btnId, HWND hwndBtn)
break_on_instructions ^= 1;
break;
}

// ################################## Start of SP CODE ###########################

case IDC_DEBUGGER_RELOAD_SYMS:
{ // TODO: delete/merge with ID_DEBUGGER_RELOAD_SYMBOLS
ramBankNamesLoaded = false;
Expand Down

0 comments on commit abf52c8

Please sign in to comment.