summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/bsmt2000.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/bsmt2000.c')
-rw-r--r--src/emu/sound/bsmt2000.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/bsmt2000.c b/src/emu/sound/bsmt2000.c
index 7e172fc6a98..11f790e5458 100644
--- a/src/emu/sound/bsmt2000.c
+++ b/src/emu/sound/bsmt2000.c
@@ -226,7 +226,7 @@ void bsmt2000_device::device_start()
// in theory we should generate a 24MHz stream, but that's certainly overkill
// internally at 24MHz the max output sample rate is 32kHz
// divided by 128 gives us 6x the max output rate which is plenty for oversampling
- m_stream = m_machine.sound().stream_alloc(*this, 0, 2, clock() / 128);
+ m_stream = machine().sound().stream_alloc(*this, 0, 2, clock() / 128);
// register for save states
save_item(NAME(m_register_select));
@@ -326,7 +326,7 @@ void bsmt2000_device::write_data(UINT16 data)
synchronize(TIMER_ID_DATA_WRITE, data);
// boost the interleave on a write so that the caller detects the status more accurately
- m_machine.scheduler().boost_interleave(attotime::from_usec(1), attotime::from_usec(10));
+ machine().scheduler().boost_interleave(attotime::from_usec(1), attotime::from_usec(10));
}