summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-02-10 14:21:16 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-02-10 14:21:20 -0500
commit294a19c2a849cacc9d1d30688370143e01998219 (patch)
treebd33df172d8f6f73992f77059a637ecd83b9d2be
parentcebab066bac08cd0e801fc55d5e68d727a3cff40 (diff)
inder_sb.cpp: Hopefully prevent random hanging in hamboy (nw)
-rw-r--r--src/mame/machine/inder_sb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/inder_sb.cpp b/src/mame/machine/inder_sb.cpp
index 5a571a27510..7fd408c2944 100644
--- a/src/mame/machine/inder_sb.cpp
+++ b/src/mame/machine/inder_sb.cpp
@@ -40,7 +40,7 @@ READ16_MEMBER(inder_sb_device::megaphx_0x050002_r)
machine().scheduler().synchronize();
// int pc = machine().device("maincpu")->safe_pc();
int ret = m_soundback;
- m_soundback = 0;
+ //m_soundback = 0;
//logerror("(%06x) megaphx_0x050002_r (from z80?) %04x\n", pc, mem_mask);
return ret;
}