| 1677 | } |
| 1678 | |
| 1679 | void LoadGameDebuggerData(HWND hwndDlg = hDebug) |
| 1680 | { |
| 1681 | if (!hwndDlg) |
| 1682 | return; |
| 1683 | |
| 1684 | numWPs = myNumWPs; |
| 1685 | FillDebuggerBookmarkListbox(hwndDlg); |
| 1686 | FillBreakList(hwndDlg); |
| 1687 | } |
| 1688 | |
| 1689 | // returns the address, or EOF if selection cursor points to something else |
| 1690 | int Debugger_CheckClickingOnAnAddressOrSymbolicName(unsigned int lineNumber, bool onlyCheckWhenNothingSelected) |
no test coverage detected