diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_draw_map.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/ft_draw_map.c b/src/ft_draw_map.c index da7ece2..202439b 100644 --- a/src/ft_draw_map.c +++ b/src/ft_draw_map.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_draw_map.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:22:18 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:23:42 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + #include <cub3d.h> #include <stdint.h> @@ -30,7 +42,7 @@ void { if (map[y][x] == '1') ft_draw_square(scale + (x * (scale)), - scale + (y * (scale)), 0x00aa99aa, clist); + scale + (y * (scale)), 0x0000ffaa, clist); else if (map[y][x] == '2') ft_draw_square(scale + (x * (scale)), scale + (y * (scale)), 0x0033ccff, clist); |