summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video.c')
-rw-r--r--src/emu/video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video.c b/src/emu/video.c
index a86704da38a..ee3e7245ee0 100644
--- a/src/emu/video.c
+++ b/src/emu/video.c
@@ -2074,7 +2074,7 @@ static void update_refresh_speed(running_machine *machine)
/* compute a target speed as an integral percentage */
/* note that we lop 0.25Hz off of the minrefresh when doing the computation to allow for
- the fact that most refresh rates are not accurate to 10 digits... */
+ the fact that most refresh rates are not accurate to 10 digits... */
target_speed = floor((minrefresh - 0.25f) * 100.0 / ATTOSECONDS_TO_HZ(min_frame_period));
target_speed = MIN(target_speed, original_speed);