diff options
author | 2009-09-10 19:15:04 +0000 | |
---|---|---|
committer | 2009-09-10 19:15:04 +0000 | |
commit | 214affb3ee0ddec62a45aa969f293ca387187fa8 (patch) | |
tree | ec29f2c7e7b2d6b47111169dda86d2f69c7213c0 /src/emu/sound/discrete.c | |
parent | 4e3d674b2b7e0b3c4fa07db51a3a2f9050cc2815 (diff) |
Remove Enable input from dst_gain_step (DISCRETE_MULTADD, DISCRETE_MULTIPLY, ...)
Diffstat (limited to 'src/emu/sound/discrete.c')
-rw-r--r-- | src/emu/sound/discrete.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/emu/sound/discrete.c b/src/emu/sound/discrete.c index 4cf25976f81..2e0d078e28c 100644 --- a/src/emu/sound/discrete.c +++ b/src/emu/sound/discrete.c @@ -222,7 +222,6 @@ static const discrete_module module_list[] = { DST_DIVIDE ,"DST_DIVIDE" , 1 ,0 ,NULL ,dst_divide_step ,NULL ,NULL }, { DST_GAIN ,"DST_GAIN" , 1 ,0 ,NULL ,dst_gain_step ,NULL ,NULL }, { DST_LOGIC_INV ,"DST_LOGIC_INV" , 1 ,0 ,NULL ,dst_logic_inv_step ,NULL ,NULL }, - { DST_GAIN ,"DST_GAIN" , 1 ,0 ,NULL ,dst_gain_step ,NULL ,NULL }, { DST_BITS_DECODE ,"DST_BITS_DECODE" , 8 ,sizeof(struct dst_bits_decode_context) ,dst_bits_decode_reset ,dst_bits_decode_step ,NULL ,NULL }, { DST_LOGIC_AND ,"DST_LOGIC_AND" , 1 ,0 ,NULL ,dst_logic_and_step ,NULL ,NULL }, { DST_LOGIC_NAND ,"DST_LOGIC_NAND" , 1 ,0 ,NULL ,dst_logic_nand_step ,NULL ,NULL }, |