1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

ASIO: Make "DENON DJ ASIO Driver" workaround more specific to the exact buggy driver version

This commit is contained in:
hogliux 2022-10-20 10:07:58 +02:00
parent 3705a5c413
commit 4abdb6da3e

View file

@ -1157,7 +1157,7 @@ private:
// Get error message if init() failed, or if it's a buggy Denon driver,
// which returns true from init() even when it fails.
if ((! initOk) || getName().containsIgnoreCase ("denon dj"))
if ((! initOk) || getName().containsIgnoreCase ("denon dj asio"))
driverError = getLastDriverError();
if ((! initOk) && driverError.isEmpty())