emu/video.cpp: Added a space before %FPS in speed text. (#10305)

This commit is contained in:
0kmg 2022-09-05 09:28:07 -08:00 committed by GitHub
parent 613f3d6cd0
commit f8ddec87bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;