Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2007-10-22 17:40:39 +0000
committerStijn Buys <ingar@osirion.org>2007-10-22 17:40:39 +0000
commitaa33bc22ec4cd14e200ba9e09c43e884a2101a74 (patch)
tree632021226cb8f0d5c05266b2bb84c607fbc27b80 /src/client/view.cc
parentf8e9eab39a5e96d478762d06e27ec38f80128435 (diff)
basis system console
Diffstat (limited to 'src/client/view.cc')
-rw-r--r--src/client/view.cc4
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);