mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-08 10:06:22 -05:00
sixel: verify-sixels: check for bad list order last
This commit is contained in:
parent
0876c7eafe
commit
da866f6453
1 changed files with 2 additions and 2 deletions
4
sixel.c
4
sixel.c
|
|
@ -201,8 +201,8 @@ static bool
|
|||
verify_sixels(const struct terminal *term)
|
||||
{
|
||||
return (verify_no_wraparound_crossover(term) &&
|
||||
verify_list_order(term) &&
|
||||
verify_no_overlap(term));
|
||||
verify_no_overlap(term) &&
|
||||
verify_list_order(term));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue