From ba822dcbd2ac883a10ea128176b6613e3d5dc14f Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Fri, 7 Sep 2012 12:30:45 +0100 Subject: Remove debug crap diff --git a/src/cat/LuaScriptInterface.cpp b/src/cat/LuaScriptInterface.cpp index 7a74a4c..f5b69ee 100644 --- a/src/cat/LuaScriptInterface.cpp +++ b/src/cat/LuaScriptInterface.cpp @@ -377,7 +377,6 @@ int LuaScriptInterface::simulation_partNeighbours(lua_State * l) else { int x = lua_tointeger(l, 1), y = lua_tointeger(l, 2), r = lua_tointeger(l, 3), rx, ry, n; - std::cout << x << " " << y << " " << r << std::endl; for (rx = -r; rx <= r; rx++) for (ry = -r; ry <= r; ry++) if (x+rx >= 0 && y+ry >= 0 && x+rx < XRES && y+ry < YRES && (rx || ry)) -- cgit v0.9.2-21-gd62e