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/315_5124.h | |
parent | 22e7beb2fc705139625e3c036c256c6f19cd1c2c (diff) |
devices/*: Removed extra semicolons after function bodies in headers. (#9275)
Diffstat (limited to 'src/devices/video/315_5124.h')
-rw-r--r-- | src/devices/video/315_5124.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/315_5124.h b/src/devices/video/315_5124.h index 075d9836838..eaa78b0ac03 100644 --- a/src/devices/video/315_5124.h +++ b/src/devices/video/315_5124.h @@ -76,8 +76,8 @@ public: void hcount_latch(); bool hcount_latched() { return m_hcounter_latched; } - bitmap_rgb32 &get_bitmap() { return m_tmpbitmap; }; - bitmap_ind8 &get_y1_bitmap() { return m_y1_bitmap; }; + bitmap_rgb32 &get_bitmap() { return m_tmpbitmap; } + bitmap_ind8 &get_y1_bitmap() { return m_y1_bitmap; } /* update the screen */ u32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); |