diff options
author | 2008-12-14 08:20:09 +0000 | |
---|---|---|
committer | 2008-12-14 08:20:09 +0000 | |
commit | 98b3cf37e79148efee7d3cb531877082996eb66b (patch) | |
tree | 3ea14802b853ef2eadaa9aa1a6cd3f0799f76528 /src/emu/sound/filter.h | |
parent | af1273c18d6bdd5c6607554f524306cb5d9df771 (diff) |
From: Atari Ace [mailto:atari_ace@verizon.net]
Sent: Saturday, December 13, 2008 6:58 AM
To: submit@mamedev.org
Cc: atariace@hotmail.com
Subject: [patch] additional sound core deprecat.h removal
Hi mamedev,
This patch removes most of the remaining deprecat.h includes in the
sound cores. deprecat.h -= 8.
~aa
--
From: Atari Ace [mailto:atari_ace@verizon.net]
Sent: Saturday, December 13, 2008 10:14 PM
To: submit@mamedev.org
Cc: atariace@hotmail.com
Subject: [patch] final sound core deprecat.h cleanup
Hi mamedev,
This patch removes the last three deprecat.h includes from the sound
cores.
~aa
Diffstat (limited to 'src/emu/sound/filter.h')
-rw-r--r-- | src/emu/sound/filter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/filter.h b/src/emu/sound/filter.h index b1a87e2b77d..ccc3a728da6 100644 --- a/src/emu/sound/filter.h +++ b/src/emu/sound/filter.h @@ -81,7 +81,7 @@ struct _filter2_context * d - damp = 1/Q * gain - overall filter gain. Set to 1 if not needed. */ -void filter2_setup(int type, double fc, double d, double gain, +void filter2_setup(const device_config *device, int type, double fc, double d, double gain, filter2_context *filter2); @@ -114,7 +114,7 @@ void filter2_step(filter2_context *filter2); * gnd vRef >---' |/ * */ -void filter_opamp_m_bandpass_setup(double r1, double r2, double r3, double c1, double c2, +void filter_opamp_m_bandpass_setup(const device_config *device, double r1, double r2, double r3, double c1, double c2, filter2_context *filter2); #endif /* __FILTER_H__ */ |