summaryrefslogtreecommitdiffstats
path: root/src/controllers/controllerdebug.cpp
blob: ce71d4381cf56f3cdd22ebea7620f9b171b90685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "controllers/controllerdebug.h"

#include "util/cmdlineargs.h"


//static
bool ControllerDebug::s_enabled = false;
bool ControllerDebug::s_testing = false;

//static
bool ControllerDebug::isEnabled() {
    return s_enabled || CmdlineArgs::Instance().getMidiDebug();
}