Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/physics.cc')
-rw-r--r--src/core/physics.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/physics.cc b/src/core/physics.cc
index 5504c50..90fb184 100644
--- a/src/core/physics.cc
+++ b/src/core/physics.cc
@@ -21,7 +21,7 @@ void Physics::init()
{
con_print << "^BInitializing physics engine..." << std::endl;
- model::CollisionMesh::init();
+ model::CollisionModel::init();
physics_configuration = new btDefaultCollisionConfiguration();
physics_dispatcher = new btCollisionDispatcher(physics_configuration);
@@ -35,7 +35,7 @@ void Physics::done()
{
con_print << "^BShutting down physics engine..." << std::endl;
- model::CollisionMesh::shutdown();
+ model::CollisionModel::shutdown();
delete physics_solver;
delete physics_dispatcher;