diff options
Diffstat (limited to 'src/emu/video/fixfreq.c')
| -rw-r--r-- | src/emu/video/fixfreq.c | 2 |
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); } |
