|
|
| version 1.2, 2003/10/25 09:08:24 | version 1.4, 2003/11/30 12:32:04 |
|---|---|
| Line 2 | Line 2 |
| #include "midiout.h" | #include "midiout.h" |
| #define MIDIOUT_VERSION 0x102 | #define MIDIOUT_VERSION 0x103 |
| #define MIDIOUT_VERSTRING "VERMOUTH 1.02" | #define MIDIOUT_VERSTRING "VERMOUTH 1.03" |
| static const char vermouthver[] = MIDIOUT_VERSTRING; | static const char vermouthver[] = MIDIOUT_VERSTRING; |
| Line 888 void midiout_setgain(MIDIHDL hdl, int ga | Line 888 void midiout_setgain(MIDIHDL hdl, int ga |
| else if (gain > 8) { | else if (gain > 8) { |
| gain = 8; | gain = 8; |
| } | } |
| hdl->gain = (char)gain; | hdl->gain = (SINT8)gain; |
| allvolupdate(hdl); | allvolupdate(hdl); |
| } | } |
| } | } |