summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-08-27 12:39:42 -0400
committer AJR <ajrhacker@users.noreply.github.com>2021-08-27 12:39:42 -0400
commitdf7e7c4edf0bf9b0225caa77d2c689d8765a0a3f (patch)
treec60ae0e6f6bb3493396eb7e34b515a0ec4b9175b /src/emu
parentaef90f0db9ae60be5d03e86b4418c57f10f6b06b (diff)
points.cpp: Minor correction to aef90f0db9ae60be5d03e86b4418c57f10f6b06b
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/debug/points.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/points.cpp b/src/emu/debug/points.cpp
index ac0dc293324..c44bc3f7563 100644
--- a/src/emu/debug/points.cpp
+++ b/src/emu/debug/points.cpp
@@ -387,7 +387,7 @@ void debug_watchpoint::triggered(read_or_write type, offs_t address, u64 data, u
m_index,
size * unit_size / 4,
data,
- m_space.addr_width() / 4,
+ (m_space.addr_width() + 3) / 4,
address);
const device_state_interface *state;