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:
authorMitchell Stokes <mogurijin@gmail.com>2013-09-18 01:00:19 +0400
committerMitchell Stokes <mogurijin@gmail.com>2013-09-18 01:00:19 +0400
commitcc414943e85bca3183fa31718f33490036f9ab2b (patch)
tree3ca22ab552cddc92e0b193cc04dd5aebb3bf642d /source/gameengine
parent7fa2d32de33c53bde42beb8c4794a99920092522 (diff)
BGE: Fixing a typo in the collision API that was found by agoose77.
Diffstat (limited to 'source/gameengine')
-rw-r--r--source/gameengine/Ketsji/KX_TouchEventManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/KX_TouchEventManager.cpp b/source/gameengine/Ketsji/KX_TouchEventManager.cpp
index fcb09ebfec6..1a9e1442cc8 100644
--- a/source/gameengine/Ketsji/KX_TouchEventManager.cpp
+++ b/source/gameengine/Ketsji/KX_TouchEventManager.cpp
@@ -93,7 +93,7 @@ bool KX_TouchEventManager::newBroadphaseResponse(void *client_data,
// Get KX_GameObjects for callbacks
KX_GameObject* gobj1 = info1->m_gameobject;
- KX_GameObject* gobj2 = (info2) ? info1->m_gameobject : NULL;
+ KX_GameObject* gobj2 = (info2) ? info2->m_gameobject : NULL;
bool has_py_callbacks = false;