summaryrefslogtreecommitdiff
path: root/src/gui/game/GameController.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/game/GameController.cpp')
-rw-r--r--src/gui/game/GameController.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/game/GameController.cpp b/src/gui/game/GameController.cpp
index 9dd949f..385abed 100644
--- a/src/gui/game/GameController.cpp
+++ b/src/gui/game/GameController.cpp
@@ -465,14 +465,12 @@ void GameController::DrawPoints(int toolSelection, queue<ui::Point> & pointQueue
if (!first)
{
activeTool->DrawLine(sim, cBrush, sPoint, fPoint, true);
- printf("From (%d, %d) To (%d, %d)\n", sPoint.X, sPoint.Y, fPoint.X, fPoint.Y);
}
first = false;
}
else
{
activeTool->Draw(sim, cBrush, fPoint);
- printf("(%d, %d)\n", fPoint.X, fPoint.Y);
}
sPoint = fPoint;
}