From: RĂ©mi Denis-Courmont Date: Sat, 17 Apr 2010 08:18:55 +0000 (+0300) Subject: fluidsynth: fix code point for channel aftertouch X-Git-Tag: 1.2.0-pre1~7026 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=dc07f6a00abff488c9e8a9eaefcd26c6569ca2a2;p=vlc fluidsynth: fix code point for channel aftertouch --- diff --git a/modules/codec/fluidsynth.c b/modules/codec/fluidsynth.c index 5c1288b3fb..4fb33fc5cc 100644 --- a/modules/codec/fluidsynth.c +++ b/modules/codec/fluidsynth.c @@ -219,7 +219,7 @@ static aout_buffer_t *DecodeBlock (decoder_t *p_dec, block_t **pp_block) case 0xC0: fluid_synth_program_change (p_sys->synth, channel, p1); break; - case 0xA0: + case 0xD0: fluid_synth_channel_pressure (p_sys->synth, channel, p1); break; case 0xE0: