diff options
Diffstat (limited to 'src/client/view.cc')
| -rw-r--r-- | src/client/view.cc | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/view.cc b/src/client/view.cc index c9a7b8a..ca41831 100644 --- a/src/client/view.cc +++ b/src/client/view.cc @@ -14,8 +14,6 @@  #include <SDL/SDL.h> -#include <iostream> -  namespace client  { @@ -118,13 +116,11 @@ void View::draw_world(float elapsed)  	// draw the world  	gl::push(); -	//std::cerr << "ship at " << game::ship.location << " translate " << game::ship.location - target->location << std::endl;  	gl::translate(game::ship.location - target->location);  	gl::scale(0.2f,  0.2f,  0.2f);  	shipdrawer->draw(elapsed);  	gl::pop(); -	//std::cerr << "star at " << game::star.location << " translate " << game::star.location - game::ship.location << std::endl;  	gl::push();  	gl::translate(game::star.location - target->location);	  	stardrawer->draw(elapsed);  | 
