Browse Source

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

v7.0.9
hogliux 2 years ago
parent
commit
4abdb6da3e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_devices/native/juce_win32_ASIO.cpp

+ 1
- 1
modules/juce_audio_devices/native/juce_win32_ASIO.cpp View File

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


Loading…
Cancel
Save