aboutsummaryrefslogtreecommitdiff
path: root/Canvas.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-10 13:05:34 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-10 13:05:34 +0200
commita842040a09cd95cf5c32f67941c7e99569a12f57 (patch)
treeccd8f25c55d48a89343889d9b4e5cf162f5b59b2 /Canvas.cpp
parent3ed5fcd2d4d29c531f4641a8794878328410ffde (diff)
remove prints
Diffstat (limited to 'Canvas.cpp')
-rw-r--r--Canvas.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Canvas.cpp b/Canvas.cpp
index b2ab49e..2ff430f 100644
--- a/Canvas.cpp
+++ b/Canvas.cpp
@@ -11,7 +11,6 @@ Tile & Canvas::get_tile(unsigned x, unsigned y) {
}
void Canvas::set_tile(unsigned x, unsigned y, TileData t) {
- printf("%s(%d, %d)\n", __FUNCTION__, x, y);
size_t index = this->pos_to_index(x, y);
if (this->tiles[index] != nullptr)
delete this->tiles[index];