1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added a missing case for wrapperType_Unity in AudioProcessor::getWrapperTypeDescription()

This commit is contained in:
ed 2019-02-06 14:25:46 +00:00
parent 03db8d15c6
commit 24de5cf3c2

View file

@ -1411,6 +1411,7 @@ const char* AudioProcessor::getWrapperTypeDescription (AudioProcessor::WrapperTy
case AudioProcessor::wrapperType_RTAS: return "RTAS";
case AudioProcessor::wrapperType_AAX: return "AAX";
case AudioProcessor::wrapperType_Standalone: return "Standalone";
case AudioProcessor::wrapperType_Unity: return "Unity";
default: jassertfalse; return {};
}
}