summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author MetalliC <0vetal0@gmail.com>2020-03-20 01:45:28 +0200
committer MetalliC <0vetal0@gmail.com>2020-03-20 01:45:28 +0200
commit207da844b8035ac26236ec146913e56088e8a1ce (patch)
treebd895c094a853605da0415328a629c0f4c3413c1 /src/devices
parent9fc91a7878a2d23d15a4fb4dd53cb50ef7051853 (diff)
refix prev (nw)
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/sound/upd7759.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/upd7759.cpp b/src/devices/sound/upd7759.cpp
index b147dee439a..3cb175bcdd8 100644
--- a/src/devices/sound/upd7759.cpp
+++ b/src/devices/sound/upd7759.cpp
@@ -413,7 +413,7 @@ void upd775x_device::advance_state()
* Depending on the state the chip was in just before the /MD was set to 0 (reset, standby
* or just-finished-playing-previous-sample) this number can range from 35 up to ~24000).
* It also varies slightly from test to test, but not much - a few cycles at most.) */
- m_clocks_left = 35 + m_start_delay; /* 35 - breaks cotton */
+ m_clocks_left = 70 + m_start_delay; /* 35 - breaks cotton */
m_state = STATE_FIRST_REQ;
break;