From 8f08fd61ce9897fc6ffa205543c5f2ab02b4e458 Mon Sep 17 00:00:00 2001 From: Justin Marshall Date: Mon, 6 Jul 2020 16:27:35 -0700 Subject: [PATCH] Removed accidental check in of debug print. --- code/redalert/cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/redalert/cell.cpp b/code/redalert/cell.cpp index 6e06340..86c7df8 100644 --- a/code/redalert/cell.cpp +++ b/code/redalert/cell.cpp @@ -1043,7 +1043,7 @@ void CellClass::ConvertIsoCoordsToScreen(int& x, int& y) { x = tempPt_x - CELL_PIXEL_W; y = tempPt_y - CELL_PIXEL_H; - Console_Printf("%d %d\n", x, y); + //Console_Printf("%d %d\n", x, y); } bool CellClass::ScreenCoordsToIsoCoords(COORDINATE screenCoord, COORDINATE& isoCoord) {