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:
Diffstat (limited to 'source/gameengine/Expressions/IfExpr.cpp')
-rw-r--r--source/gameengine/Expressions/IfExpr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Expressions/IfExpr.cpp b/source/gameengine/Expressions/IfExpr.cpp
index baf91e4a5c3..152ca8704ce 100644
--- a/source/gameengine/Expressions/IfExpr.cpp
+++ b/source/gameengine/Expressions/IfExpr.cpp
@@ -64,8 +64,8 @@ CIfExpr::~CIfExpr()
/**
* pre:
- * ret: a new object containing the value of m_e1 if m_guard is a boolean TRUE
- * a new object containing the value of m_e2 if m_guard is a boolean FALSE
+ * ret: a new object containing the value of m_e1 if m_guard is a boolean true
+ * a new object containing the value of m_e2 if m_guard is a boolean false
* an new errorvalue if m_guard is not a boolean
*/
CValue* CIfExpr::Calculate()