summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author 0kmg <9137159+0kmg@users.noreply.github.com>2022-09-05 09:28:07 -0800
committer GitHub <noreply@github.com>2022-09-05 13:28:07 -0400
commitf8ddec87bc32d6b707bbaf5dfd5c435f4b85a203 (patch)
tree95b908e42c5426b66163e9bdb7decc4d83ef90a6 /src/emu
parent613f3d6cd0bbe5f4e9d3d5a0f193569bc91ad9db (diff)
emu/video.cpp: Added a space before %FPS in speed text. (#10305)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/video.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video.cpp b/src/emu/video.cpp
index 334e636b5d0..5dd1af6faca 100644
--- a/src/emu/video.cpp
+++ b/src/emu/video.cpp
@@ -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;