Browse Source

Fix for last ASIO check-in.

tags/2021-05-28
jules 13 years ago
parent
commit
1252f0aed0
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      modules/juce_audio_devices/native/juce_win32_ASIO.cpp

+ 3
- 2
modules/juce_audio_devices/native/juce_win32_ASIO.cpp View File

@@ -65,8 +65,9 @@ namespace ASIODebugging
logMessage ("ASIO error: " + context + " - " + err);
}
#else
#define JUCE_ASIO_LOG(a) {}
#define JUCE_ASIO_LOG_ERROR(a, b) {}
static void dummyLog() {}
#define JUCE_ASIO_LOG(a) ASIODebugging::dummyLog()
#define JUCE_ASIO_LOG_ERROR(a, b) ASIODebugging::dummyLog()
#endif
}


Loading…
Cancel
Save