From ce43b1cd1caa539af687425f58a6999a20807878 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 3 Mar 2020 16:14:26 +0100 Subject: Going full stack is bav --- src/ft_get_res.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/ft_get_res.c') diff --git a/src/ft_get_res.c b/src/ft_get_res.c index 8b86cea..013b061 100644 --- a/src/ft_get_res.c +++ b/src/ft_get_res.c @@ -24,7 +24,7 @@ static int8_t i++; if (i != ft_strlen(word)) { - ft_sprintf(clist.errmsg, FT_ERR_RES_ALPHA); + ft_sprintf(clist->errmsg, FT_ERR_RES_ALPHA); return (-1); } return (0); @@ -33,10 +33,10 @@ static int8_t static void ft_securize_scr(t_win *wl) { - while (wl.x_size % 10) - wl.x_size -= 1; - while (wl.y_size % 10) - wl.y_size -= 1; + while (wl->x_size % 10) + wl->x_size -= 1; + while (wl->y_size % 10) + wl->y_size -= 1; } static int8_t @@ -45,7 +45,7 @@ static int8_t if (!(*words + 0) || !(*(words + 1)) || !(*(words + 2)) || (*(words + 3))) { - ft_sprintf(clist.errmsg, FT_ERR_ARGS); + ft_sprintf(clist->errmsg, FT_ERR_ARGS); return (-1); } return (0); @@ -56,20 +56,20 @@ int8_t { t_win *wlist; - wlist = clist.wlist; - if (clist.currlvl > 0) + wlist = &clist->wlist; + if (clist->currlvl > 0) return (0); if (ft_check_res_args(words, clist) < 0) return (-1); if ((ft_checkdigit(words[1], clist) < 0) || (ft_checkdigit(words[2], clist) < 0)) return (-1); - wlist.x_size = ft_atoi(words[1]); - wlist.y_size = ft_atoi(words[2]); - if (wlist.x_size <= 10 - || wlist.y_size <= 10) + wlist->x_size = ft_atoi(words[1]); + wlist->y_size = ft_atoi(words[2]); + if (wlist->x_size <= 10 + || wlist->y_size <= 10) { - ft_sprintf(clist.errmsg, FT_ERR_RES_SMALL); + ft_sprintf(clist->errmsg, FT_ERR_RES_SMALL); return (-1); } if (ft_get_screen_size(wlist) < 0) -- cgit v1.2.3