]> git.sesse.net Git - vlc/commitdiff
fluidsynth: fix code point for channel aftertouch
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 17 Apr 2010 08:18:55 +0000 (11:18 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 17 Apr 2010 08:18:55 +0000 (11:18 +0300)
modules/codec/fluidsynth.c

index 5c1288b3fbf5b0a6ac23b845ad47adc188f2c814..4fb33fc5cce1c418c9b9af7932d9bf18835d31d6 100644 (file)
@@ -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: