Avoid a false assertion error

This commit is contained in:
falkTX 2018-06-05 20:33:10 +02:00
parent 0248888e3c
commit 378e90e7d2
1 changed files with 4 additions and 2 deletions

View File

@ -2293,9 +2293,11 @@ void CarlaPlugin::sendMidiAllNotesOffToCallback()
// -------------------------------------------------------------------
// UI Stuff
void CarlaPlugin::showCustomUI(const bool)
void CarlaPlugin::showCustomUI(const bool yesNo)
{
CARLA_SAFE_ASSERT(false);
if (yesNo) {
CARLA_SAFE_ASSERT(false);
}
}
void CarlaPlugin::uiIdle()