Fix typo, unsure DEBUG macro clean

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-11-05 23:31:53 +00:00
parent 072f9ee3ca
commit 5fab213d60
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
2 changed files with 6 additions and 2 deletions

View file

@ -1111,8 +1111,8 @@ struct IldaeilModuleWidget : ModuleWidget {
addInput(createInput<PJ301MPort>(Vec(3, 54), module, IldaeilModule::INPUT1));
addInput(createInput<PJ301MPort>(Vec(3, 54 + 30), module, IldaeilModule::INPUT2));
addInput(createOutput<PJ301MPort>(Vec(3, 54 + 60), module, IldaeilModule::OUTPUT1));
addInput(createOutput<PJ301MPort>(Vec(3, 54 + 90), module, IldaeilModule::OUTPUT2));
addOutput(createOutput<PJ301MPort>(Vec(3, 54 + 60), module, IldaeilModule::OUTPUT1));
addOutput(createOutput<PJ301MPort>(Vec(3, 54 + 90), module, IldaeilModule::OUTPUT2));
}
};

View file

@ -19,6 +19,10 @@
#include "rack.hpp"
#ifdef NDEBUG
# undef DEBUG
#endif
using namespace rack;
extern Plugin* pluginInstance;