summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robert <Robbbert@users.noreply.github.com>2014-12-24 09:32:51 +1100
committer Robert <Robbbert@users.noreply.github.com>2014-12-24 09:32:51 +1100
commitd90f5edfe59c57f9bb4d5687b13e08788d1a41b5 (patch)
treece8ebe582b21f6401763049d538c76e8c956beff
parentf5b12cf524fc453d4766625549ad4119fe69d2ae (diff)
debug: reverted dasm window change. (nw)
-rw-r--r--src/emu/debug/debugcpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcpu.c b/src/emu/debug/debugcpu.c
index 2ee63de182a..221a4585d87 100644
--- a/src/emu/debug/debugcpu.c
+++ b/src/emu/debug/debugcpu.c
@@ -1731,7 +1731,7 @@ void device_debug::start_hook(const attotime &endtime)
// check for periodic updates
if (&m_device == global->visiblecpu && osd_ticks() > global->last_periodic_update_time + osd_ticks_per_second()/4)
{
- m_device.machine().debug_view().update_all_except(DVT_DISASSEMBLY);
+ m_device.machine().debug_view().update_all();
m_device.machine().debug_view().flush_osd_updates();
global->last_periodic_update_time = osd_ticks();
}