From 6723790daa66c333103f940540ea7ef83a4057d9 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Tue, 24 Oct 2017 18:39:03 +0200 Subject: Begin working on proper tile graphics. --- src/path_finder.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/path_finder.cpp') diff --git a/src/path_finder.cpp b/src/path_finder.cpp index ab8126a..4ace89d 100644 --- a/src/path_finder.cpp +++ b/src/path_finder.cpp @@ -46,8 +46,6 @@ void path_finder_t::eliminate_nodes(rectf_t bounds) rect_t index_bounds; tile_index_t index; - std::cout << "eliminate " << bounds << "\n"; - index_bounds[0] = tile_index_t(bounds[0].floor()) - base; index_bounds[1] = tile_index_t(bounds[1].ceil()) - base; -- cgit