diff options
| author | 2010-07-20 20:46:53 +0000 | |
|---|---|---|
| committer | 2010-07-20 20:46:53 +0000 | |
| commit | 82f1a8e9dfd4c2bd64de57d4e264f851650addb2 (patch) | |
| tree | 1190acef798f09f5545e6d799ffae6852a6a285b | |
| parent | 08c2ad802e8741ff010d47a9967f581fea24a116 (diff) | |
Allow beamx > 999 to be displayed in the debugger. Updated beamy config accordingly to keep beamx and beamy aligned. (no whatsnew)
| -rw-r--r-- | src/emu/debug/dvstate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/debug/dvstate.c b/src/emu/debug/dvstate.c index 571ea4b1200..2d176b56fa4 100644 --- a/src/emu/debug/dvstate.c +++ b/src/emu/debug/dvstate.c @@ -149,12 +149,12 @@ void debug_view_state::recompute() *tailptr = auto_alloc(&m_machine, state_item(REG_CYCLES, "cycles", 8)); tailptr = &(*tailptr)->m_next; - // add a beam entry: beamx:123 - *tailptr = auto_alloc(&m_machine, state_item(REG_BEAMX, "beamx", 3)); + // add a beam entry: beamx:1234 + *tailptr = auto_alloc(&m_machine, state_item(REG_BEAMX, "beamx", 4)); tailptr = &(*tailptr)->m_next; - // add a beam entry: beamy:456 - *tailptr = auto_alloc(&m_machine, state_item(REG_BEAMY, "beamy", 3)); + // add a beam entry: beamy:5678 + *tailptr = auto_alloc(&m_machine, state_item(REG_BEAMY, "beamy", 4)); tailptr = &(*tailptr)->m_next; // add a beam entry: frame:123456 |
