summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-08-29 22:42:51 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-08-29 22:42:51 -0400
commitcb8c1590926cb0bd3db7a1a1ae25291475140853 (patch)
tree3e10e7759872928546777667247d10ea48420f02
parent20a5ea109fcde485a735732c08f560f819fbb69e (diff)
sgi_ge5.cpp: Fix clang error: private field 'm_dma_count' is not used [-Werror,-Wunused-private-field] (nw)
-rw-r--r--src/mame/video/sgi_ge5.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/video/sgi_ge5.cpp b/src/mame/video/sgi_ge5.cpp
index d7e471aa6fd..915b279bc69 100644
--- a/src/mame/video/sgi_ge5.cpp
+++ b/src/mame/video/sgi_ge5.cpp
@@ -40,6 +40,7 @@ sgi_ge5_device::sgi_ge5_device(machine_config const &mconfig, char const *tag, d
, m_re_w(*this)
, m_icount(0)
{
+ (void)m_dma_count;
}
void sgi_ge5_device::device_add_mconfig(machine_config &config)