aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-01-24 18:19:20 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-01-24 18:19:20 +0100
commit4286b43e9e35242b03f5a38af1099f77901c0b3e (patch)
tree6ee93930d83e24f047cbd72dbfbcbd8ebfa14dfc /src/main.c
parentAdded a second map for error management (diff)
download42-cub3d-4286b43e9e35242b03f5a38af1099f77901c0b3e.tar.gz
42-cub3d-4286b43e9e35242b03f5a38af1099f77901c0b3e.tar.bz2
42-cub3d-4286b43e9e35242b03f5a38af1099f77901c0b3e.tar.xz
42-cub3d-4286b43e9e35242b03f5a38af1099f77901c0b3e.tar.zst
42-cub3d-4286b43e9e35242b03f5a38af1099f77901c0b3e.zip
Much cleaner
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index b47b36f..0f2c93c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -15,7 +15,7 @@ int
ft_memdel(wlist);
return (1);
}
- ft_parse_map(wlist, "map/map_one.cub");
+ ft_parse_map("map/map_two.cub", wlist);
if (ft_init_winlx(wlist) < 0)
return (ft_exit(3, wlist));
mlx_key_hook(wlist->winptr, ft_key_event, wlist);