diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-18 17:51:49 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-18 17:51:49 +0100 |
commit | 816f4636ee60dcfd5ac3bac119c6e8e56e9e84e1 (patch) | |
tree | 326ae4a5275e880a3685c549ad2267394a153733 /src/ft_draw_hud.c | |
parent | Added a cool effect on map back (diff) | |
download | 42-cub3d-816f4636ee60dcfd5ac3bac119c6e8e56e9e84e1.tar.gz 42-cub3d-816f4636ee60dcfd5ac3bac119c6e8e56e9e84e1.tar.bz2 42-cub3d-816f4636ee60dcfd5ac3bac119c6e8e56e9e84e1.tar.xz 42-cub3d-816f4636ee60dcfd5ac3bac119c6e8e56e9e84e1.tar.zst 42-cub3d-816f4636ee60dcfd5ac3bac119c6e8e56e9e84e1.zip |
Tweaked the effect
Diffstat (limited to 'src/ft_draw_hud.c')
-rw-r--r-- | src/ft_draw_hud.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_draw_hud.c b/src/ft_draw_hud.c index 36b987a..7e50ea0 100644 --- a/src/ft_draw_hud.c +++ b/src/ft_draw_hud.c @@ -18,7 +18,7 @@ static void { uint32_t col; - col = 0x00dfdfdf; + col = 0x00d6d6d6; *(cl->img.ptr + x * 4 + (cl->img.sizeline * y)) = (uint8_t)*(cl->tlist[16].ptr + cl->tlist[16].tex_x * 4 + 4 * cl->tlist[16].img_w * cl->tlist[16].tex_y) & col; |