Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
659B

  1. /*************************************************************************************
  2. * Original code copyright (C) 2012 Steve Folta
  3. * Converted to Juce module (C) 2016 Leo Olivers
  4. * Forked from https://github.com/stevefolta/SFZero
  5. * For license info please see the LICENSE file distributed with this source code
  6. *************************************************************************************/
  7. #include "SFZDebug.h"
  8. #include <stdarg.h>
  9. namespace sfzero
  10. {
  11. #ifdef DEBUG
  12. void dbgprintf(const char *msg, ...)
  13. {
  14. va_list args;
  15. va_start(args, msg);
  16. char output[256];
  17. vsnprintf(output, 256, msg, args);
  18. va_end(args);
  19. }
  20. #endif // DEBUG
  21. }