From 9c7ff6a3bc98a4a7d89f2a360dbf5486b4a41143 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Fri, 25 Oct 2013 03:14:09 +0000 Subject: [PATCH] Another Clang fix (nw) --- src/emu/video/fixfreq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/video/fixfreq.c b/src/emu/video/fixfreq.c index 281bb22e635..c020a954bd1 100644 --- a/src/emu/video/fixfreq.c +++ b/src/emu/video/fixfreq.c @@ -215,7 +215,7 @@ void fixedfreq_device::update_vid(double newval, attotime cur_time) int pixels = round((cur_time - m_line_time).as_double() / m_clock_period.as_double()); attotime time = (cur_time - m_last_time); - if ((newval == m_vid)) + if (newval == m_vid) return; ATTR_UNUSED int sync = sync_separator(time, newval);