Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-08-31 06:47:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-31 06:47:32 +0300
commitd267739be7f6f95b9c0af99571e818c9adde6cd2 (patch)
tree968cf7c6367d85c8bb319ea4eff4506f4f276482 /source/blender/compositor
parent4ac5859f05892cf1456385fe7de3f13debdca858 (diff)
Fix incorrect cast
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/nodes/COM_ChannelMatteNode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp b/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp
index cf0f4715d74..aa9301602ba 100644
--- a/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp
+++ b/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp
@@ -55,7 +55,7 @@ void ChannelMatteNode::convertToOperations(NodeConverter &converter, const Compo
convert = new ConvertRGBToYCCOperation();
((ConvertRGBToYCCOperation *)convert)->setMode(0); /* BLI_YCC_ITU_BT601 */
inv_convert = new ConvertYCCToRGBOperation();
- ((ConvertRGBToYCCOperation *)inv_convert)->setMode(0); /* BLI_YCC_ITU_BT601 */
+ ((ConvertYCCToRGBOperation *)inv_convert)->setMode(0); /* BLI_YCC_ITU_BT601 */
break;
default:
break;