Diff for /np2/sound/vermouth/midiout.c between versions 1.3 and 1.5

version 1.3, 2003/11/28 08:01:33 version 1.5, 2003/12/01 04:01:42
Line 2 Line 2
 #include        "midiout.h"  #include        "midiout.h"
   
   
 #define MIDIOUT_VERSION         0x103  #define MIDIOUT_VERSION         0x104
 #define MIDIOUT_VERSTRING       "VERMOUTH 1.03"  #define MIDIOUT_VERSTRING       "VERMOUTH 1.04"
   
   
 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);
         }          }
 }  }

Removed from v.1.3  
changed lines
  Added in v.1.5


RetroPC.NET-CVS <cvs@retropc.net>