summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/homerun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/homerun.cpp')
-rw-r--r--src/mame/drivers/homerun.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/homerun.cpp b/src/mame/drivers/homerun.cpp
index 15781d0e213..4e12654178b 100644
--- a/src/mame/drivers/homerun.cpp
+++ b/src/mame/drivers/homerun.cpp
@@ -83,7 +83,7 @@ WRITE8_MEMBER(homerun_state::homerun_control_w)
if (~data & 0x10 & m_control && !m_samples->playing(0))
{
- samples_iterator iter(m_samples);
+ samples_iterator iter(*m_samples);
if (m_sample < iter.count())
m_samples->start(0, m_sample);
}