mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
ASIO: Made the isBlacklistedDriver() check a bit broader
This commit is contained in:
parent
4599496a42
commit
6283130203
1 changed files with 1 additions and 1 deletions
|
|
@ -1568,7 +1568,7 @@ private:
|
|||
//==============================================================================
|
||||
static bool isBlacklistedDriver (const String& driverName)
|
||||
{
|
||||
return driverName == "ASIO DirectX Full Duplex Driver" || driverName == "ASIO Multimedia Driver";
|
||||
return driverName.startsWith ("ASIO DirectX Full Duplex") || driverName == "ASIO Multimedia Driver";
|
||||
}
|
||||
|
||||
void addDriverInfo (const String& keyName, HKEY hk)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue