diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-05 00:30:41 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-05 00:30:41 +0100 |
commit | b729c722cb6fea7a88929e0054508bfa60c27ed5 (patch) | |
tree | ba6f02bee81a1cfd5144847f0f0e5e57d3332f7f /src/ft_hex_to_rgb.c | |
parent | it's all black (diff) | |
download | 42-cub3d-b729c722cb6fea7a88929e0054508bfa60c27ed5.tar.gz 42-cub3d-b729c722cb6fea7a88929e0054508bfa60c27ed5.tar.bz2 42-cub3d-b729c722cb6fea7a88929e0054508bfa60c27ed5.tar.xz 42-cub3d-b729c722cb6fea7a88929e0054508bfa60c27ed5.tar.zst 42-cub3d-b729c722cb6fea7a88929e0054508bfa60c27ed5.zip |
How do I convert hex to rgb pls
Diffstat (limited to 'src/ft_hex_to_rgb.c')
-rw-r--r-- | src/ft_hex_to_rgb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ft_hex_to_rgb.c b/src/ft_hex_to_rgb.c index 03e9643..81c474e 100644 --- a/src/ft_hex_to_rgb.c +++ b/src/ft_hex_to_rgb.c @@ -13,10 +13,10 @@ #include <cub3d.h> #include <stdint.h> -t_rgb - ft_hex_to_rgb(int32_t color) +t_bmp_rgb + ft_hex_to_rgb(uint32_t color) { - t_rgb rgb; + t_bmp_rgb rgb; rgb.r = ((color >> 16) & 0xff) / 255.0; rgb.g = ((color >> 8) & 0xff) / 255.0; |