diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-18 22:34:45 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-18 22:34:45 +0100 |
commit | 5be59b518283b4737949bcbea597068df43487dc (patch) | |
tree | e2bffbff55a6d252642994d1e03fce1e4dd1760d | |
parent | ok bav (diff) | |
download | 42-cub3d-5be59b518283b4737949bcbea597068df43487dc.tar.gz 42-cub3d-5be59b518283b4737949bcbea597068df43487dc.tar.bz2 42-cub3d-5be59b518283b4737949bcbea597068df43487dc.tar.xz 42-cub3d-5be59b518283b4737949bcbea597068df43487dc.tar.zst 42-cub3d-5be59b518283b4737949bcbea597068df43487dc.zip |
Bug fix
-rw-r--r-- | src/ft_draw_heals_extra.c | 2 | ||||
-rw-r--r-- | src/ft_find_item.c | 3 | ||||
-rw-r--r-- | src/ft_raycasting.c | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/ft_draw_heals_extra.c b/src/ft_draw_heals_extra.c index 05ff830..62c64b0 100644 --- a/src/ft_draw_heals_extra.c +++ b/src/ft_draw_heals_extra.c @@ -23,7 +23,7 @@ void int32_t i; i = 0; - while (i < cl->mlist.traps_nbr) + while (i < cl->mlist.heals_nbr) { sprite = cl->heals[i]; sprite.spritey = sprite.s_pos_x - (cl->plist.pos_x - 0.5); diff --git a/src/ft_find_item.c b/src/ft_find_item.c index 782a24a..d00b62d 100644 --- a/src/ft_find_item.c +++ b/src/ft_find_item.c @@ -33,6 +33,7 @@ void ft_find_item(t_player *pl, t_map *ml, t_cub *cl) { uint16_t id; + if (ft_ischarset(FT_CHRST_ITEM, ml->map[(uint64_t)pl->pos_y][(uint64_t)pl->pos_x])) { @@ -43,7 +44,7 @@ void pl->life = (pl->life > 100) ? (100) : (pl->life); ml->map[(uint64_t)pl->pos_y][(uint64_t)pl->pos_x] = '0'; id = ft_fetch_heals_id((uint64_t)pl->pos_y, - (uint64_t)pl->pos_x, cl); + (uint64_t)pl->pos_x, cl); cl->heals[id].s_pos_x = 0; cl->heals[id].s_pos_y = 0; /* TODO: ft_sfx_heal(3) */ diff --git a/src/ft_raycasting.c b/src/ft_raycasting.c index d805cdf..2d7df79 100644 --- a/src/ft_raycasting.c +++ b/src/ft_raycasting.c @@ -106,8 +106,8 @@ void } ft_floor_cast(cl); ft_calc_sprite(cl); - ft_calc_trap(cl); ft_calc_heal(cl); + ft_calc_trap(cl); ft_memdel((void*)&cl->rlist.wall_dist_tab); ft_memdel((void*)&cl->rlist.wall_bz); } |