diff --git a/src/mame/audio/taito_en.c b/src/mame/audio/taito_en.c index 3ab2d9b8040..c85b2d2d6eb 100644 --- a/src/mame/audio/taito_en.c +++ b/src/mame/audio/taito_en.c @@ -248,11 +248,11 @@ SOUND_RESET( taito_en_soundsystem_reset ) static void mb87078_gain_changed( running_machine &machine, int channel, int percent ) { - if (channel < 2) + if (channel > 1) { es5505_device *es5505 = machine.device("ensoniq"); - es5505->set_output_gain(channel, percent / 100.0); + es5505->set_output_gain(channel & 1, percent / 100.0); } }