Debugger : Removed stray garbage characters from beamx, beamy, and frame counter displays. [Robbbert]

This commit is contained in:
Miodrag Milanovic 2010-07-22 13:24:52 +00:00
parent 7ae55db1ec
commit 184ee16762

View File

@ -274,7 +274,7 @@ void debug_view_state::view_update()
if (screen != NULL) if (screen != NULL)
{ {
curitem->m_currval = screen->hpos(); curitem->m_currval = screen->hpos();
valstr.printf("%3d", (UINT32)curitem->m_currval); valstr.printf("%4d", (UINT32)curitem->m_currval);
} }
break; break;
@ -282,7 +282,7 @@ void debug_view_state::view_update()
if (screen != NULL) if (screen != NULL)
{ {
curitem->m_currval = screen->vpos(); curitem->m_currval = screen->vpos();
valstr.printf("%3d", (UINT32)curitem->m_currval); valstr.printf("%4d", (UINT32)curitem->m_currval);
} }
break; break;
@ -290,7 +290,7 @@ void debug_view_state::view_update()
if (screen != NULL) if (screen != NULL)
{ {
curitem->m_currval = screen->frame_number(); curitem->m_currval = screen->frame_number();
valstr.printf("%3d", (UINT32)curitem->m_currval); valstr.printf("%6d", (UINT32)curitem->m_currval);
} }
break; break;
} }