summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/multipcm.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-30 07:53:06 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-30 07:53:06 +0000
commit93b5b0e9126d5d248b5ef4efff3b7e98776cfeb8 (patch)
tree46bb242b1c5c523312239b8b89aeec704f127e8b /src/emu/sound/multipcm.c
parent5b659a4906ca020dddff3e5a093409004ac3dcfa (diff)
removed not needed parameter from stream_alloc (nw)
it is set to same value in sound.c
Diffstat (limited to 'src/emu/sound/multipcm.c')
-rw-r--r--src/emu/sound/multipcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/multipcm.c b/src/emu/sound/multipcm.c
index b5524f12653..20ee7e0b779 100644
--- a/src/emu/sound/multipcm.c
+++ b/src/emu/sound/multipcm.c
@@ -439,7 +439,7 @@ void multipcm_device::device_start()
m_Rate=(float) clock() / MULTIPCM_CLOCKDIV;
- m_stream = machine().sound().stream_alloc(*this, 0, 2, m_Rate, this);
+ m_stream = machine().sound().stream_alloc(*this, 0, 2, m_Rate);
//Volume+pan table
for(i=0;i<0x800;++i)