From 184ee16762c8c7080086cec4bf4dafbc819bd6f2 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 22 Jul 2010 13:24:52 +0000 Subject: [PATCH] Debugger : Removed stray garbage characters from beamx, beamy, and frame counter displays. [Robbbert] --- src/emu/debug/dvstate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emu/debug/dvstate.c b/src/emu/debug/dvstate.c index 2d176b56fa4..01383a3ca2c 100644 --- a/src/emu/debug/dvstate.c +++ b/src/emu/debug/dvstate.c @@ -274,7 +274,7 @@ void debug_view_state::view_update() if (screen != NULL) { curitem->m_currval = screen->hpos(); - valstr.printf("%3d", (UINT32)curitem->m_currval); + valstr.printf("%4d", (UINT32)curitem->m_currval); } break; @@ -282,7 +282,7 @@ void debug_view_state::view_update() if (screen != NULL) { curitem->m_currval = screen->vpos(); - valstr.printf("%3d", (UINT32)curitem->m_currval); + valstr.printf("%4d", (UINT32)curitem->m_currval); } break; @@ -290,7 +290,7 @@ void debug_view_state::view_update() if (screen != NULL) { curitem->m_currval = screen->frame_number(); - valstr.printf("%3d", (UINT32)curitem->m_currval); + valstr.printf("%6d", (UINT32)curitem->m_currval); } break; }