diff options
author | 2011-09-19 22:16:38 +0000 | |
---|---|---|
committer | 2011-09-19 22:16:38 +0000 | |
commit | 34ff81062c2ba5cb5f9d574a19ee20287a899b1f (patch) | |
tree | 2b1dcfaa3e45e5eed4f8a64d32f13b8ffbe242b5 /src/emu | |
parent | 6f11f9a3a5ad04fa616da4e4ee26dbe009e538cb (diff) |
changed c352 internal clockdivider after latests guru measurements
Diffstat (limited to 'src/emu')
-rw-r--r-- | src/emu/sound/c352.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/c352.c b/src/emu/sound/c352.c index 6204be0b4a2..752e8b24cef 100644 --- a/src/emu/sound/c352.c +++ b/src/emu/sound/c352.c @@ -10,7 +10,7 @@ 32 voices Supports 8-bit linear and 8-bit muLaw samples Output: digital, 16 bit, 4 channels - Output sample rate is the input clock / 384. + Output sample rate is the input clock / (288 * 2). */ #include "emu.h" @@ -463,7 +463,7 @@ void c352_device::device_start() // find our direct access m_direct = &space()->direct(); - m_sample_rate_base = clock() / 192; + m_sample_rate_base = clock() / 288; m_stream = machine().sound().stream_alloc(*this, 0, 4, m_sample_rate_base, this); |