mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
Debugger : Removed stray garbage characters from beamx, beamy, and frame counter displays. [Robbbert]
This commit is contained in:
parent
7ae55db1ec
commit
184ee16762
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user