- Timestamp:
- Oct 3, 2006, 3:23:56 PM (18 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/collision_detection/cd_engine.cc
r9869 r9877 25 25 // #include "player.h" 26 26 27 #include "spatial_separation.h"27 //#include "spatial_separation.h" 28 28 #include "quadtree.h" 29 #include "quadtree_node.h"29 //#include "quadtree_node.h" 30 30 31 31 #include "bsp_manager.h" -
trunk/src/lib/network/network_log.cc
r9869 r9877 16 16 #include "network_log.h" 17 17 #include <cassert> 18 18 #include <stdarg.h> 19 19 /** 20 20 * the singleton reference to this class -
trunk/src/util/signal_handler.h
r9406 r9877 63 63 public: 64 64 inline static SignalHandler* getInstance() { if (!SignalHandler::singletonRef) SignalHandler::singletonRef = new SignalHandler(); return SignalHandler::singletonRef; }; 65 void doCatch( std::string appName ) {};65 void doCatch( const std::string & appName, const std::string & fileName ) {}; 66 66 void dontCatch() {}; 67 67 void registerCallback( SignalCallback cb, void * someData ) {}; -
trunk/src/world_entities/terrain.cc
r9869 r9877 244 244 245 245 /* THIS IS ONLY FOR DEBUGGING INFORMATION */ 246 if (this->ssp != NULL)247 this->ssp->drawQuadtree();246 // if (this->ssp != NULL) 247 // this->ssp->drawQuadtree(); 248 248 } 249 249
Note: See TracChangeset
for help on using the changeset viewer.