mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-01 00:21:14 +00:00
Use char for key_pressure values
This commit is contained in:
parent
a2951fc37d
commit
6c3c1fc22c
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ struct _fluid_channel_t
|
|||
int sfont_bank_prog; /**< SoundFont ID (bit 21-31), bank (bit 7-20), program (bit 0-6) */
|
||||
fluid_preset_t* preset; /**< Selected preset */
|
||||
|
||||
int key_pressure[128]; /**< MIDI polyphonic key pressure */
|
||||
char key_pressure[128]; /**< MIDI polyphonic key pressure */
|
||||
int channel_pressure; /**< MIDI channel pressure */
|
||||
int pitch_bend; /**< Current pitch bend value */
|
||||
int pitch_wheel_sensitivity; /**< Current pitch wheel sensitivity */
|
||||
|
|
Loading…
Reference in a new issue