mirror of
https://github.com/holub/mame
synced 2025-07-03 00:56:03 +03:00
emu/video.cpp: Added a space before %FPS in speed text. (#10305)
This commit is contained in:
parent
613f3d6cd0
commit
f8ddec87bc
@ -301,7 +301,7 @@ std::string video_manager::speed_text()
|
||||
|
||||
// append the speed for all cases except paused
|
||||
if (!paused)
|
||||
util::stream_format(str, "%4d%%", (int)(100 * m_speed_percent + 0.5));
|
||||
util::stream_format(str, " %3d%%", (int)(100 * m_speed_percent + 0.5));
|
||||
|
||||
// display the number of partial updates as well
|
||||
int partials = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user