From 12bf6bb18a1ee8cc32c85d270667f449a496176b Mon Sep 17 00:00:00 2001 From: benrg Date: Sat, 7 Jan 2023 20:32:15 -0800 Subject: a2_video_device: make some accessors const (#10807) --- src/mame/apple/apple2video.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/mame/apple/apple2video.h b/src/mame/apple/apple2video.h index 9d9b7043ce7..e65c611ba66 100644 --- a/src/mame/apple/apple2video.h +++ b/src/mame/apple/apple2video.h @@ -31,15 +31,15 @@ public: DECLARE_WRITE_LINE_MEMBER(dhires_w); DECLARE_WRITE_LINE_MEMBER(an2_w); - const bool get_graphics() { return m_graphics; } - const bool get_hires() { return m_hires; } - const bool get_dhires() { return m_dhires; } - const bool get_page2() { return m_page2; } - const bool get_80col() { return m_80col; } - const bool get_80store() { return m_80store; } - const bool get_mix() { return m_mix; } - const bool get_altcharset() { return m_altcharset; } - const bool get_monohgr() { return m_monohgr; } + bool get_graphics() const { return m_graphics; } + bool get_hires() const { return m_hires; } + bool get_dhires() const { return m_dhires; } + bool get_page2() const { return m_page2; } + bool get_80col() const { return m_80col; } + bool get_80store() const { return m_80store; } + bool get_mix() const { return m_mix; } + bool get_altcharset() const { return m_altcharset; } + bool get_monohgr() const { return m_monohgr; } void a80col_w(bool b80Col) { m_80col = b80Col; } void a80store_w(bool b80Store) { m_80store = b80Store; } -- cgit v1.2.3