summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-09-02 22:16:26 +0200
committer hap <happppp@users.noreply.github.com>2022-09-02 22:16:26 +0200
commit184f4dcfa2c445f5fa90364ec24537e1c6e2e555 (patch)
treeacbadb08e4242f2c27b6d542628164d6946c8d81 /src/devices/sound
parentcb510e940afbb1918beb56bdf40cc912aa842fa8 (diff)
schedule: rename add_scheduling_quantum to add_quantum, added perfect_quatum and use that for most cases of boost_interleave
Diffstat (limited to 'src/devices/sound')
-rw-r--r--src/devices/sound/bsmt2000.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/bsmt2000.cpp b/src/devices/sound/bsmt2000.cpp
index ee7e4e4ee86..54fe92588d5 100644
--- a/src/devices/sound/bsmt2000.cpp
+++ b/src/devices/sound/bsmt2000.cpp
@@ -236,7 +236,7 @@ void bsmt2000_device::write_data(uint16_t data)
m_deferred_data_write->adjust(attotime::zero, data);
// boost the interleave on a write so that the caller detects the status more accurately
- machine().scheduler().boost_interleave(attotime::from_usec(1), attotime::from_usec(10));
+ machine().scheduler().add_quantum(attotime::from_usec(1), attotime::from_usec(10));
}