From dc07f6a00abff488c9e8a9eaefcd26c6569ca2a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 17 Apr 2010 11:18:55 +0300 Subject: [PATCH] fluidsynth: fix code point for channel aftertouch --- modules/codec/fluidsynth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.39.2