summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/audio/tvc.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/mess/audio/tvc.c
parent5b659a4906ca020dddff3e5a093409004ac3dcfa (diff)
removed not needed parameter from stream_alloc (nw)
it is set to same value in sound.c
Diffstat (limited to 'src/mess/audio/tvc.c')
-rw-r--r--src/mess/audio/tvc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/audio/tvc.c b/src/mess/audio/tvc.c
index 30b491a115b..0869cfc3f67 100644
--- a/src/mess/audio/tvc.c
+++ b/src/mess/audio/tvc.c
@@ -31,7 +31,7 @@ void tvc_sound_device::device_start()
// resolve callbacks
m_write_sndint.resolve_safe();
- m_stream = machine().sound().stream_alloc(*this, 0, 1, machine().sample_rate(), this );
+ m_stream = machine().sound().stream_alloc(*this, 0, 1, machine().sample_rate());
m_sndint_timer = timer_alloc(TIMER_SNDINT);
}