From 81ef83361952d3c7eb31abd281fde89efbae17c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Mon, 10 Sep 2012 01:28:48 +0000 Subject: [PATCH] small fix --- src/mame/drivers/homerun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/homerun.c b/src/mame/drivers/homerun.c index 7dd6edacaf0..03185a2c917 100644 --- a/src/mame/drivers/homerun.c +++ b/src/mame/drivers/homerun.c @@ -76,7 +76,7 @@ WRITE8_MEMBER(homerun_state::homerun_control_w) if (data & 0x20 & ~m_control) m_samples->stop(0); - if (~data & 0x10 & m_control) + if (~data & 0x10 & m_control && !m_samples->playing(0)) { samples_iterator iter(*m_samples); if (m_sample < iter.count())