diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-10 13:05:34 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-10 13:05:34 +0200 |
commit | a842040a09cd95cf5c32f67941c7e99569a12f57 (patch) | |
tree | ccd8f25c55d48a89343889d9b4e5cf162f5b59b2 /Canvas.cpp | |
parent | 3ed5fcd2d4d29c531f4641a8794878328410ffde (diff) |
remove prints
Diffstat (limited to 'Canvas.cpp')
-rw-r--r-- | Canvas.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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]; |