BGE: Fixing a typo in the collision API that was found by agoose77.

This commit is contained in:
Mitchell Stokes 2013-09-17 21:00:19 +00:00
parent 7fa2d32de3
commit cc414943e8

@ -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;