/[svn]/linuxsampler/trunk/src/drivers/midi/MidiInputDeviceCoreMidi.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/drivers/midi/MidiInputDeviceCoreMidi.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 902 by schoenebeck, Tue May 17 18:16:54 2005 UTC revision 903 by persson, Sat Jul 22 14:22:53 2006 UTC
# Line 93  namespace LinuxSampler { Line 93  namespace LinuxSampler {
93                                          port->DispatchControlChange(packet->data[1],packet->data[2],packet->data[0]&0x0F);                                          port->DispatchControlChange(packet->data[1],packet->data[2],packet->data[0]&0x0F);
94                                          break;                                          break;
95    
96                                    case 0xD0:
97                                            port->DispatchControlChange(128,packet->data[1],packet->data[0]&0x0F);
98                                            break;
99    
100                                  case 0xE0:                                  case 0xE0:
101                                          port->DispatchPitchbend(packet->data[1],packet->data[0]&0x0F);                                          port->DispatchPitchbend(packet->data[1],packet->data[0]&0x0F);
102                                          break;                                          break;
# Line 159  namespace LinuxSampler { Line 163  namespace LinuxSampler {
163      }      }
164    
165      String MidiInputDeviceCoreMidi::Version() {      String MidiInputDeviceCoreMidi::Version() {
166              String s = "$Revision: 1.6 $";              String s = "$Revision: 1.7 $";
167              return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword              return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
168      }      }
169    

Legend:
Removed from v.902  
changed lines
  Added in v.903

  ViewVC Help
Powered by ViewVC