diff options
Diffstat (limited to 'src/ft_select_get.c')
-rw-r--r-- | src/ft_select_get.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ft_select_get.c b/src/ft_select_get.c index 88507a3..a2bd257 100644 --- a/src/ft_select_get.c +++ b/src/ft_select_get.c @@ -33,11 +33,11 @@ static int8_t return (-1); else if (ret == 5 && (clist->mlist.sprite_path[0][0])) return (-1); - if (ret == 6 && ((clist->f_rgb.r != -1) || (clist->f_rgb.g != -1) - || (clist->f_rgb.b != -1))) + if (ret == 6 && (((clist->f_rgb.r != -1) || (clist->f_rgb.g != -1) + || (clist->f_rgb.b != -1)) || clist->mlist.fl_tex_path[0])) return (-1); - if (ret == 7 && ((clist->c_rgb.r != -1) || (clist->c_rgb.g != -1) - || (clist->c_rgb.b != -1))) + if (ret == 7 && (((clist->c_rgb.r != -1) || (clist->c_rgb.g != -1) + || (clist->c_rgb.b != -1)) || clist->mlist.ce_tex_path[0])) return (-1); return (ret); } |