Ticket #28: portaudioAsioDigiDriver.patch

File portaudioAsioDigiDriver.patch, 1.2 KB (added by rossb, 2 years ago)
  • src/hostapi/asio/pa_asio.cpp

     
    11131113                || strcmp (names[i],"ASIO Multimedia Driver")          == 0 
    11141114                || strncmp(names[i],"Premiere",8)                      == 0   //"Premiere Elements Windows Sound 1.0" 
    11151115                || strncmp(names[i],"Adobe",5)                         == 0   //"Adobe Default Windows Sound 1.5" 
    1116                 || strncmp(names[i],"ReaRoute ASIO",13)                == 0)  //Reaper www.reaper.fm <- fix your stuff man. 
     1116                || strncmp(names[i],"ReaRoute ASIO",13)                == 0  //Reaper www.reaper.fm <- fix your stuff man. 
     1117                ) 
    11171118            { 
    1118                 PA_DEBUG(("BLACKLISTED!!!\n")); 
     1119              PA_DEBUG(("BLACKLISTED!!!\n")); 
     1120              continue; 
     1121            } 
     1122 
     1123            if (IsDebuggerPresent()) 
     1124            { 
     1125              if  (strcmp(names[i], "ASIO Digidesign Driver") == 0) 
     1126              { 
     1127                PA_DEBUG(("BLACKLISTED!!! asio digidesign driver quit the debugger\n")); 
    11191128                continue; 
     1129              } 
    11201130            } 
    11211131 
    11221132