From 4abdb6da3e34b3c2372e57a19024bc98e9c7fe79 Mon Sep 17 00:00:00 2001 From: hogliux Date: Thu, 20 Oct 2022 10:07:58 +0200 Subject: [PATCH] ASIO: Make "DENON DJ ASIO Driver" workaround more specific to the exact buggy driver version --- modules/juce_audio_devices/native/juce_win32_ASIO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_devices/native/juce_win32_ASIO.cpp b/modules/juce_audio_devices/native/juce_win32_ASIO.cpp index 3ded6493fe..eb46baf7bc 100644 --- a/modules/juce_audio_devices/native/juce_win32_ASIO.cpp +++ b/modules/juce_audio_devices/native/juce_win32_ASIO.cpp @@ -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())