From fd971ee3a2662939c6d6ad921c02504d7bfdf1c0 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 3 Feb 2014 20:05:51 +0100 Subject: [PATCH] VstSyncController: print a warning if VST sync support is not enabled Users might wonder why VST sync does not work as they didn't notice the option in the configuration dialog. --- src/core/VstSyncController.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/VstSyncController.cpp b/src/core/VstSyncController.cpp index 93243b197..7d7177c82 100644 --- a/src/core/VstSyncController.cpp +++ b/src/core/VstSyncController.cpp @@ -88,6 +88,10 @@ VstSyncController::VstSyncController() : } #endif } + else + { + qWarning( "VST sync support disabled in your configuration" ); + } if( m_syncData == NULL ) {