aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_sprite.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_get_sprite.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ft_get_sprite.c b/src/ft_get_sprite.c
index c9546fb..4580681 100644
--- a/src/ft_get_sprite.c
+++ b/src/ft_get_sprite.c
@@ -22,11 +22,11 @@ void
x = 1;
y = 1;
- while (clist->mlist->map[y])
+ while (clist->mlist.map[y])
{
- while (clist->mlist->map[y][x])
+ while (clist->mlist.map[y][x])
{
- if (ft_ischarset("2", clist->mlist->map[y][x]))
+ if (ft_ischarset("2", clist->mlist.map[y][x]))
{
clist->sp_list.s_pos_x = x + 0.5;
clist->sp_list.s_pos_y = y + 0.5;
@@ -52,13 +52,13 @@ int8_t
ft_sprintf(clist->errmsg, "%s", FT_ERR_NOT_A_XPM);
return (-1);
}
- ft_memdel((void**)&clist->mlist->sprite_path);
- if (!(clist->mlist->sprite_path = ft_strdup(*(words + 1))))
+ ft_memdel((void**)&clist->mlist.sprite_path);
+ if (!(clist->mlist.sprite_path = ft_strdup(*(words + 1))))
{
ft_sprintf(clist->errmsg, "%s", FT_ERR_ALLOCATE);
return (-1);
}
- if (ft_check_not_found(clist->mlist->sprite_path) < 0)
+ if (ft_check_not_found(clist->mlist.sprite_path) < 0)
{
ft_sprintf(clist->errmsg, "%s", FT_ERR_RD_SP);
return (-1);