summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/fixfreq.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
commitfec65e0b5766ade69e086d1c5b859d97494fce56 (patch)
treec22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/video/fixfreq.c
parent30d94e51c53f30187a1bc565ef33e4744319790e (diff)
Cleanups and version bumpmame0153
Diffstat (limited to 'src/emu/video/fixfreq.c')
-rw-r--r--src/emu/video/fixfreq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/fixfreq.c b/src/emu/video/fixfreq.c
index fcc9247ad66..dabc7c17524 100644
--- a/src/emu/video/fixfreq.c
+++ b/src/emu/video/fixfreq.c
@@ -268,7 +268,7 @@ NETDEV_ANALOG_CALLBACK_MEMBER(fixedfreq_device::update_vid)
{
int colv = (int) ((m_vid - m_sync_threshold) / 3.7 * 255.0);
if (colv > 255)
- colv = 255;
+ colv = 255;
col = rgb_t(colv, colv, colv);
}