another color

This commit is contained in:
Quinten Mennen 2025-04-15 17:50:36 +02:00
parent 1c1ee35ca0
commit 7e1bfc245c

View File

@ -6,7 +6,7 @@
/* By: qmennen <qmennen@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/15 16:28:10 by qmennen #+# #+# */
/* Updated: 2025/04/15 16:38:13 by qmennen ### ########.fr */
/* Updated: 2025/04/15 17:41:28 by qmennen ### ########.fr */
/* */
/* ************************************************************************** */
@ -19,5 +19,5 @@ void render_clear(t_screen *screen)
i = 0;
while (i++ < screen->width * screen->height)
mlx_put_pixel(screen->img, i % screen->width, i / screen->width, 0x212121ff);
mlx_put_pixel(screen->img, i % screen->width, i / screen->width, 0x121212FF);
}