summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/snes_snd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/snes_snd.cpp')
-rw-r--r--src/mame/audio/snes_snd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/audio/snes_snd.cpp b/src/mame/audio/snes_snd.cpp
index d8dc6ab583f..42b206c2072 100644
--- a/src/mame/audio/snes_snd.cpp
+++ b/src/mame/audio/snes_snd.cpp
@@ -1156,7 +1156,8 @@ WRITE8_MEMBER( snes_sound_device::spc_io_w )
case 0x7: /* Port 3 */
// osd_printf_debug("SPC: %02x to APU @ %d %s\n", data, offset & 3, machine().describe_context());
m_port_out[offset - 4] = data;
- machine().scheduler().boost_interleave(attotime::zero, attotime::from_usec(20));
+ // Unneeded, we already run at perfect_interleave
+ // machine().scheduler().boost_interleave(attotime::zero, attotime::from_usec(20));
break;
case 0xa: /* Timer 0 */
case 0xb: /* Timer 1 */