Skip to content

Commit

Permalink
lookup_blitset: iterate through all blitters #1490
Browse files Browse the repository at this point in the history
  • Loading branch information
dankamongmen committed Jun 1, 2021
1 parent d401649 commit 8618791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/blit.c
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ const struct blitset* lookup_blitset(const tinfo* tcache, ncblitter_e setid, boo
}
}
const struct blitset* bset = notcurses_blitters;
while(bset->egcs){
while(bset->geom){
if(bset->geom == setid){
return bset;
}
Expand Down

0 comments on commit 8618791

Please sign in to comment.