summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/spureverb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/spureverb.h')
-rw-r--r--src/emu/sound/spureverb.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/emu/sound/spureverb.h b/src/emu/sound/spureverb.h
index 8e94a318a24..3bd814c07c4 100644
--- a/src/emu/sound/spureverb.h
+++ b/src/emu/sound/spureverb.h
@@ -16,10 +16,10 @@
class reverb
{
signed short *y[2][4],
- *x[2],
- *ax[2],
- *ay[2],
- bx1[2][2],by1[2];
+ *x[2],
+ *ax[2],
+ *ay[2],
+ bx1[2][2],by1[2];
int yp,
max_delay,
sound_hz;
@@ -34,21 +34,21 @@
const int wetvol_r,
const unsigned int _sz);
void comb_allpass4(signed short *sp,
- signed short *dp,
- const comb_param &comb_delay,
- const int comb_gain,
- const int allpass_delay,
- const int allpass_gain,
- const int *rvol,
- const unsigned int sz);
+ signed short *dp,
+ const comb_param &comb_delay,
+ const int comb_gain,
+ const int allpass_delay,
+ const int allpass_gain,
+ const int *rvol,
+ const unsigned int sz);
void comb_allpass1(signed short *sp,
- signed short *dp,
- const comb_param &comb_delay,
- const int comb_gain,
- const int allpass_delay,
- const int allpass_gain,
- const int *rvol,
- const unsigned int sz);
+ signed short *dp,
+ const comb_param &comb_delay,
+ const int comb_gain,
+ const int allpass_delay,
+ const int allpass_gain,
+ const int *rvol,
+ const unsigned int sz);
void bandpass(signed short *sp,
const reverb_params *rp,
const unsigned int sz);
@@ -58,11 +58,11 @@
~reverb();
void process(signed short *output,
- signed short *reverb_input,
- const reverb_params *rp,
- const int wetvol_l,
- const int wetvol_r,
- const unsigned int sz);
+ signed short *reverb_input,
+ const reverb_params *rp,
+ const int wetvol_l,
+ const int wetvol_r,
+ const unsigned int sz);
void reset();
};