From 9dd68d8e6816befe1dd56164cde7e42880875b9a Mon Sep 17 00:00:00 2001 From: Patrik Gornicz Date: Sun, 30 Nov 2008 17:39:39 -0500 Subject: [PATCH] removed debug print statements --- src/entityManager.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/entityManager.cpp b/src/entityManager.cpp index e091b51..7d75d3c 100644 --- a/src/entityManager.cpp +++ b/src/entityManager.cpp @@ -135,7 +135,6 @@ void manager::draw() clearUpParticles(); { Autolock lock( particleSetLock ); - DPF(0, "Particle Draw Start"); // update active Particle*s for( setPart::iterator it = active_Particles.begin(); @@ -144,14 +143,11 @@ void manager::draw() { (*it)->draw(); } - - DPF(0, "Particle Draw End"); } clearUpPhysics(); { Autolock lock( physicsEntitySetLock ); - DPF(0, "Physics Draw Start"); // update active PhysicsEntity*s for( setPhys::iterator it = active_Physics.begin(); @@ -160,8 +156,6 @@ void manager::draw() { (*it)->draw(); } - - DPF(0, "Physics Draw End"); } } @@ -203,7 +197,6 @@ void clearUpParticles() it != particles_To_Add.end(); it++ ) { - DPF(0, "Particle Insert"); active_Particles.insert(*it); } particles_To_Add.clear(); @@ -213,7 +206,6 @@ void clearUpParticles() it != particles_To_Remove.end(); it++ ) { - DPF(0, "Particle Delete"); active_Particles.erase(*it); } particles_To_Remove.clear(); @@ -227,7 +219,6 @@ void clearUpPhysics() it != physics_To_Add.end(); it++ ) { - DPF(0, "Physics Insert"); active_Physics.insert(*it); } physics_To_Add.clear(); @@ -237,7 +228,6 @@ void clearUpPhysics() it != physics_To_Remove.end(); it++ ) { - DPF(0, "Physics Delete"); active_Physics.erase(*it); } physics_To_Remove.clear(); -- 2.10.2