From 7fbd44a0faffebce9f81db734a00de98aa3cc5bd Mon Sep 17 00:00:00 2001 From: Frank Dana Date: Mon, 2 Mar 2020 23:14:20 -0500 Subject: [PATCH] ColorShift: Use one-word name in EffectInfo (#453) --- src/EffectInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EffectInfo.cpp b/src/EffectInfo.cpp index 5d786fe7..6829f4eb 100644 --- a/src/EffectInfo.cpp +++ b/src/EffectInfo.cpp @@ -56,7 +56,7 @@ EffectBase* EffectInfo::CreateEffect(std::string effect_type) { else if (effect_type == "ChromaKey") return new ChromaKey(); - else if (effect_type == "Color Shift") + else if (effect_type == "ColorShift") return new ColorShift(); else if (effect_type == "Crop")