diff options
author | salaaad2 <arthudurant263@gmail.com> | 2020-03-16 19:24:29 +0100 |
---|---|---|
committer | salaaad2 <arthudurant263@gmail.com> | 2020-03-16 19:24:29 +0100 |
commit | 322f3191c5a76cf702d4ddd7b1122219be3f5779 (patch) | |
tree | 10410d334df5df0e05d3bc304d0639fed53600aa /src/ft_draw_sprite_extra.c | |
parent | it just works (unpeu) (diff) | |
download | 42-cub3d-322f3191c5a76cf702d4ddd7b1122219be3f5779.tar.gz 42-cub3d-322f3191c5a76cf702d4ddd7b1122219be3f5779.tar.bz2 42-cub3d-322f3191c5a76cf702d4ddd7b1122219be3f5779.tar.xz 42-cub3d-322f3191c5a76cf702d4ddd7b1122219be3f5779.tar.zst 42-cub3d-322f3191c5a76cf702d4ddd7b1122219be3f5779.zip |
fix norme
Diffstat (limited to '')
-rw-r--r-- | src/ft_draw_sprite_extra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_draw_sprite_extra.c b/src/ft_draw_sprite_extra.c index 25c9c7a..d81913c 100644 --- a/src/ft_draw_sprite_extra.c +++ b/src/ft_draw_sprite_extra.c @@ -68,7 +68,7 @@ void { while (i < cl->mlist.sprite_nbr) { - sprite = cl->sprites[j][cl->mlist.sprite_order[j][i]]; + sprite = cl->sprites[j][cl->mlist.sprite_order[j][i]]; sprite.current_sprite = (j == 0) ? 4 : j + 7; sprite.spritey = sprite.s_pos_x - (cl->plist.pos_x - 0.5); sprite.spritex = sprite.s_pos_y - (cl->plist.pos_y - 0.5); |