RemotePlugin: do not skip audio processing when debugging
If DEBUG_REMOTE_PLUGIN was set, RemotePlugin::process() always returned as RemotePlugin::isRunning() returned false. Fix this by always returning true when debugging.
This commit is contained in:
@@ -22,8 +22,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#define COMPILE_REMOTE_PLUGIN_BASE
|
||||
//#define DEBUG_REMOTE_PLUGIN
|
||||
#ifdef DEBUG_REMOTE_PLUGIN
|
||||
#include <QtCore/QDebug>
|
||||
#endif
|
||||
|
||||
#include "RemotePlugin.h"
|
||||
#include "mixer.h"
|
||||
@@ -36,11 +39,6 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
//#define DEBUG_REMOTE_PLUGIN
|
||||
#ifdef DEBUG_REMOTE_PLUGIN
|
||||
#include <QtCore/QDebug>
|
||||
#endif
|
||||
|
||||
|
||||
// simple helper thread monitoring our RemotePlugin - if process terminates
|
||||
// unexpectedly invalidate plugin so LMMS doesn't lock up
|
||||
|
||||
Reference in New Issue
Block a user