From 62f927b69a781d719728aa5f92d01d6badd22f4b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 21 Dec 2017 12:01:47 +0100 Subject: [PATCH] removed debug from texture remapping --- textures.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/textures.cpp b/textures.cpp index 726a779d..6e26f4d7 100644 --- a/textures.cpp +++ b/textures.cpp @@ -1014,16 +1014,6 @@ void remap(eTextureState old_tstate, eTextureState old_tstate_max) { mi2 = mi; mapTexture(c, mi2, si, Id, pshift); mi2.tvertices = move(new_tvertices); - - printf("Redrawing tile #%d [%d] from %d (%d) to %d (%d)\n", si.id, oldid, mi.current_type, ncurr, c->type, ntarget); - printf("vertices: "); - for(auto x: mi.vertices) - printf("%lf ", ld(x)); - printf("\n"); - printf("tvertices: "); - for(auto x: mi.tvertices) - printf("%lf ", ld(x)); - printf("\n"); } catch(out_of_range) { printf("Unexpected missing cell #%d/%d", si.id, oldid);