Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-01-15 19:23:38 +0000
committerStijn Buys <ingar@osirion.org>2013-01-15 19:23:38 +0000
commit7195924377adb2009d464237f660b1a9f534f493 (patch)
tree85e9596a9e195fda592f76fed1a11a243e122c89 /src/core
parentcb5b2b3d05d784f7aa1236e48b6945092af4c36e (diff)
Corrected a comment typo.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/physics.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/physics.cc b/src/core/physics.cc
index 33e80fe..fcd9ac0 100644
--- a/src/core/physics.cc
+++ b/src/core/physics.cc
@@ -39,7 +39,7 @@ bool bullet_contact_added_callback(btManifoldPoint &cp, const btCollisionObjectW
#endif
assert(entity0 && entity1);
- // FIXME there should probably be an entity flag indiciating wether or not it has a collision callback
+ // FIXME there should probably be an entity flag indicating wether or not it has a collision callback
if ((entity0->type() == Entity::Dynamic) || (entity0->type() == Entity::Controlable) || (entity0->type() == Entity::Projectile)) {
static_cast<EntityDynamic *>(entity0)->collision(entity1);