diff options
author | 2022-02-06 13:59:38 -0900 | |
---|---|---|
committer | 2022-02-06 23:59:38 +0100 | |
commit | ae373baa246e69a52e6e8249e6e8c7897ba1e1fe (patch) | |
tree | e948c0f9f690b3d4fd2886910552ee045389ccd6 /src/devices/video/fixfreq.h | |
parent | 22e7beb2fc705139625e3c036c256c6f19cd1c2c (diff) |
devices/*: Removed extra semicolons after function bodies in headers. (#9275)
Diffstat (limited to 'src/devices/video/fixfreq.h')
-rw-r--r-- | src/devices/video/fixfreq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/fixfreq.h b/src/devices/video/fixfreq.h index b32992fbf8d..f0f279a2832 100644 --- a/src/devices/video/fixfreq.h +++ b/src/devices/video/fixfreq.h @@ -38,7 +38,7 @@ struct fixedfreq_monitor_desc {} uint32_t monitor_clock() const noexcept { return m_monitor_clock; } - double clock_period() const noexcept { return 1.0 / (double) m_monitor_clock; }; + double clock_period() const noexcept { return 1.0 / (double) m_monitor_clock; } int minh() const noexcept { return (m_hbackporch - m_hsync) * m_hscale; } int maxh() const noexcept { return (m_hbackporch - m_hsync + m_hvisible) * m_hscale - 1; } |