Difference for arch/linux/hmiplay.c from version 1.7 to 1.8


version 1.7 version 1.8
Line 802
 
Line 802
 }  }
   
 void digi_play_midi_song( char * filename, char * melodic_bank, char * drum_bank, int loop ) {  void digi_play_midi_song( char * filename, char * melodic_bank, char * drum_bank, int loop ) {
    if(FindArg("-nomusic"))
    return;
   
  if (!filename)   if (!filename)
  send_ipc("p");   send_ipc("p");
  else {   else {
Line 812
 
Line 815
 }  }
 void digi_set_midi_volume( int mvolume ) {   void digi_set_midi_volume( int mvolume ) {
         char buf[128];          char buf[128];
    if(FindArg("-nomusic"))
    return;
          
         sprintf(buf,"v%i",mvolume);          sprintf(buf,"v%i",mvolume);
         send_ipc(buf);          send_ipc(buf);

Legend:
line(s) removed in v.1.7 
line(s) changed
 line(s) added in v.1.8