summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Wilbert Pol <wilbert@jdg.info>2011-06-14 20:20:48 +0000
committer Wilbert Pol <wilbert@jdg.info>2011-06-14 20:20:48 +0000
commitd565bd41e6e87a79bea7fab0619d7bdc5fdcbdf8 (patch)
tree81603c28f005a9978e40e18fb16713fdbabb1bb7 /src
parentb90cab195f3b0f1df96d517fb19bf38bbf8b5ae0 (diff)
memory.c: Fixed display of physical addresses in the debug memory viewer. [Wilbert Pol]
Diffstat (limited to 'src')
-rw-r--r--src/emu/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/memory.c b/src/emu/memory.c
index 0b4151d2caa..18bf6c0a50c 100644
--- a/src/emu/memory.c
+++ b/src/emu/memory.c
@@ -1959,7 +1959,7 @@ address_space::address_space(device_memory_interface &memory, address_spacenum s
m_log_unmap(true),
m_direct(*auto_alloc(memory.device().machine(), direct_read_data(*this))),
m_name(memory.space_config(spacenum)->name()),
- m_addrchars((m_config.m_databus_width + 3) / 4),
+ m_addrchars((m_config.m_addrbus_width + 3) / 4),
m_logaddrchars((m_config.m_logaddr_width + 3) / 4),
m_machine(memory.device().machine())
{