diff options
| author | 2016-09-27 18:05:19 -0400 | |
|---|---|---|
| committer | 2016-09-27 18:05:19 -0400 | |
| commit | e8d2853334d6779213352b2e7aa442d1ace45516 (patch) | |
| tree | c7ede65dd03a891b33644fe2c3549aa6863cb02b /src/emu/debug/debugcmd.cpp | |
| parent | 7f1bb873d19bc81907e800b2ab6ed00e82a79f28 (diff) | |
Revert "Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for everything in the debugger, which allows interruptible cpu's to work properly. [smf]"
This reverts commit 1a186c8a3a16a7ce99d7df2dd217a7552b696c92.
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
| -rw-r--r-- | src/emu/debug/debugcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 9fd4d1a860b..99cdefb3b36 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -2628,7 +2628,7 @@ void debugger_commands::execute_trackpc(int ref, int params, const char *param[] // Insert current pc if (m_cpu.get_visible_cpu() == cpu) { - const offs_t pc = cpu->safe_pcbase(); + const offs_t pc = cpu->safe_pc(); cpu->debug()->set_track_pc_visited(pc); } m_console.printf("PC tracking enabled\n"); |
