aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_draw_map.c')
-rw-r--r--src/ft_draw_map.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ft_draw_map.c b/src/ft_draw_map.c
index acf671a..2ca5f37 100644
--- a/src/ft_draw_map.c
+++ b/src/ft_draw_map.c
@@ -10,6 +10,7 @@
/* */
/* ************************************************************************** */
+#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
@@ -54,7 +55,7 @@ void
else if (map[y][x] == '2')
ft_draw_square(scale + 9 + (x * (scale)),
ft_y_offset(clist) - 9 + (y * (scale)), 0x0033ccff, clist);
- else
+ else if (ft_ischarset("0LNSEW", map[y][x]))
ft_draw_square(scale + 9 + (x * (scale)), ft_y_offset(clist)
- 9 + (y * (scale)), 0x006afa6a, clist);
x++;