Skip to content

Commit

Permalink
EffectsManager: fix incorrect debug assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Be-ing committed Apr 6, 2020
1 parent 665320e commit 093ce6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/effects/effectsmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ void EffectsManager::loadDefaultEffectPresets() {
}

void EffectsManager::saveDefaultForEffect(EffectPresetPointer pEffectPreset) {
VERIFY_OR_DEBUG_ASSERT(!pEffectPreset->isEmpty()) {
if (pEffectPreset->isEmpty()) {
return;
}

Expand Down

0 comments on commit 093ce6e

Please sign in to comment.