aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_verline.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_draw_verline.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c
index 6cbdc00..d144d87 100644
--- a/src/ft_draw_verline.c
+++ b/src/ft_draw_verline.c
@@ -53,9 +53,11 @@ int8_t
d = (d <= 0) ? (-d) : (d);
tex_y = ((d * cl->tlist[cl->w_side].img_h) / cl->rlist.line_h) / 256;
(tex_y < 0) ? (tex_y = 0) : 0;
+ /*if (!(tex_x % 2))*/
ft_draw_texture(cl, x, y, tex_y);
y++;
}
+ /*printf("%d\n", cl->tlist[cl->w_side].tex_x);*/
ft_draw_floor(cl, y, x);
return (0);
}