aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_verline.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_draw_verline.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c
index 89eedea..deb5721 100644
--- a/src/ft_draw_verline.c
+++ b/src/ft_draw_verline.c
@@ -19,7 +19,8 @@ static void
while ((uint32_t)y < cl->wlist.y_size)
{
*(int*)(cl->img.ptr +
- (x * 4 + (y * cl->img.sizeline))) = ft_darken_rgb(cl->f_rgb);
+ (x * 4 + (y * cl->img.sizeline)))
+ = ft_rgb_to_hex(cl->f_rgb);
y++;
}
}
@@ -33,7 +34,8 @@ static void
while (i <= y)
{
*(int*)(cl->img.ptr +
- (x * 4 + (i * cl->img.sizeline))) = ft_rgb_to_hex(cl->c_rgb);
+ (x * 4 + (i * cl->img.sizeline)))
+ = ft_rgb_to_hex(cl->c_rgb);
i++;
}
}