remove debug logging from last commit

This commit is contained in:
jacob1 2015-09-21 02:14:45 -04:00
parent 6ae3593465
commit 6fc787502c

View File

@ -463,17 +463,10 @@ void GameController::DrawPoints(int toolSelection, ui::Point oldPos, ui::Point n
activeTool->SetStrength(gameModel->GetToolStrength()); activeTool->SetStrength(gameModel->GetToolStrength());
if (!held) if (!held)
{
activeTool->Draw(sim, cBrush, newPos); activeTool->Draw(sim, cBrush, newPos);
gameModel->Log("Initial mouse coord at "+ format::NumberToString<int>(newPos.X) + " " + format::NumberToString<int>(newPos.Y), true);
}
else else
{
gameModel->Log("Previous mouse coord at "+ format::NumberToString<int>(oldPos.X) + " " + format::NumberToString<int>(oldPos.Y), true);
gameModel->Log("Current mouse coord at "+ format::NumberToString<int>(newPos.X) + " " + format::NumberToString<int>(newPos.Y), true);
activeTool->DrawLine(sim, cBrush, oldPos, newPos, true); activeTool->DrawLine(sim, cBrush, oldPos, newPos, true);
} }
}
bool GameController::LoadClipboard() bool GameController::LoadClipboard()
{ {