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/Ketsji/KX_WorldInfo.cpp')
-rw-r--r--source/gameengine/Ketsji/KX_WorldInfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Ketsji/KX_WorldInfo.cpp b/source/gameengine/Ketsji/KX_WorldInfo.cpp
index be8b1ce92fc..d8b9dabe5f3 100644
--- a/source/gameengine/Ketsji/KX_WorldInfo.cpp
+++ b/source/gameengine/Ketsji/KX_WorldInfo.cpp
@@ -264,7 +264,7 @@ static int mathutils_world_generic_check(BaseMathObject *bmo)
KX_WorldInfo *self = static_cast<KX_WorldInfo*>BGE_PROXY_REF(bmo->cb_user);
if (self == NULL)
return -1;
-
+
return 0;
}
@@ -399,10 +399,10 @@ PyObject *KX_WorldInfo::pyattr_get_mist_typeconst(void *self_v, const KX_PYATTRI
if (!strcmp(type, "KX_MIST_QUADRATIC")) {
retvalue = PyLong_FromLong(KX_MIST_QUADRATIC);
- }
+ }
else if (!strcmp(type, "KX_MIST_LINEAR")) {
retvalue = PyLong_FromLong(KX_MIST_LINEAR);
- }
+ }
else if (!strcmp(type, "KX_MIST_INV_QUADRATIC")) {
retvalue = PyLong_FromLong(KX_MIST_INV_QUADRATIC);
}