Fixed a bug in emu/sound/disc_mth.c. This affected spiders.c fire sound. [MASH]

This commit is contained in:
Couriersud 2010-02-15 18:39:17 +00:00
parent 48f526158f
commit a1d654a6db

View File

@ -1621,9 +1621,9 @@ static DISCRETE_STEP(dst_switch)
* input[3] - Threshold for enable
*
************************************************************************/
#define DST_ASWITCH__CTRL DISCRETE_INPUT(1)
#define DST_ASWITCH__IN DISCRETE_INPUT(2)
#define DST_ASWITCH__THRESHOLD DISCRETE_INPUT(3)
#define DST_ASWITCH__CTRL DISCRETE_INPUT(0)
#define DST_ASWITCH__IN DISCRETE_INPUT(1)
#define DST_ASWITCH__THRESHOLD DISCRETE_INPUT(2)
static DISCRETE_STEP(dst_aswitch)