diff options
Diffstat (limited to 'src/ft_draw_verline.c')
-rw-r--r-- | src/ft_draw_verline.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c index 2b684eb..220badb 100644 --- a/src/ft_draw_verline.c +++ b/src/ft_draw_verline.c @@ -19,11 +19,12 @@ uint32_t (void)it; res = 0; - if (it < 255) + while (it < 500) { - rgb.r += it; - rgb.g += it; - rgb.b += it; + rgb.r += 1; + rgb.g += 1; + rgb.b += 1; + it++; } res += ((rgb.r << 16) + (rgb.g << 8) + rgb.b); return (res); |