]> git.sesse.net Git - casparcg/commitdiff
[blend_modes] #577 Fixed typo
authorHelge Norberg <helge.norberg@svt.se>
Mon, 20 Mar 2017 10:52:25 +0000 (11:52 +0100)
committerHelge Norberg <helge.norberg@svt.se>
Mon, 20 Mar 2017 10:52:25 +0000 (11:52 +0100)
core/mixer/image/blend_modes.cpp

index 4098d734798e1c43b2b51fd15e1b6cbf4de83ba3..066821fa05f5a2af98a8d57d939a9d0f8f07524e 100644 (file)
@@ -26,7 +26,7 @@
 #include <boost/algorithm/string.hpp>
 
 namespace caspar { namespace core {
-               
+
 blend_mode get_blend_mode(const std::wstring& str)
 {
        if(boost::iequals(str, L"normal"))
@@ -87,7 +87,7 @@ blend_mode get_blend_mode(const std::wstring& str)
                return blend_mode::color;
        else if(boost::iequals(str, L"luminosity"))
                return blend_mode::luminosity;
-               
+
        return blend_mode::normal;
 }
 
@@ -134,7 +134,7 @@ std::wstring get_blend_mode(blend_mode mode)
        case blend_mode::linear_light:
                return L"linear_light";
        case blend_mode::vivid_light:
-               return L"vivid_ligh";
+               return L"vivid_light";
        case blend_mode::pin_light:
                return L"pin_light";
        case blend_mode::hard_mix:
@@ -158,4 +158,4 @@ std::wstring get_blend_mode(blend_mode mode)
        }
 }
 
-}}
\ No newline at end of file
+}}