diff options
author | 2008-09-04 15:31:56 +0000 | |
---|---|---|
committer | 2008-09-04 15:31:56 +0000 | |
commit | a4bca37f8199fd68f2476644cb2d4c4d606ec201 (patch) | |
tree | 8949fe1eab05f9a171cd0bdd18cc35190ca798d2 /src/emu/video.c | |
parent | 05915406d0791796a269915009eab9a1f41707c3 (diff) |
Cleanups and version bump.mame0127u2
Diffstat (limited to 'src/emu/video.c')
-rw-r--r-- | src/emu/video.c | 2 |
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); |