From 08dce587032f08c5bfbc2790bdb2d668ca1990c1 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Wed, 5 Feb 2020 17:26:10 +0100 Subject: int16_tamer --- src/ft_print_list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ft_print_list.c') diff --git a/src/ft_print_list.c b/src/ft_print_list.c index 4e9e8d7..6c2b702 100644 --- a/src/ft_print_list.c +++ b/src/ft_print_list.c @@ -26,8 +26,8 @@ void ft_printf("West ------- [%s]\n", clist->we_tex_path); ft_printf("East ------- [%s]\n", clist->ea_tex_path); ft_printf("Sprite ----- [%s]\n", clist->sprite_path); - ft_printf("F color ---- [%d]\n", clist->f_color); - ft_printf("C color ---- [%d]\n", clist->c_color); + ft_printf("F color ---- [%d]\n", ft_rgb_to_hex(clist->f_rgb)); + ft_printf("C color ---- [%d]\n", ft_rgb_to_hex(clist->c_rgb)); i = 0; ft_printf("Map\n----\n"); while (clist->map[i]) -- cgit v1.2.3