amethyst / sheep

Modular and lightweight spritesheet packer 🐑
Other
89 stars 12 forks source link

Fixed bug in anchor id search #2

Closed covercash2 closed 5 years ago

covercash2 commented 5 years ago

this PR fixes a bug in the anchor id search. binary search only works on sorted inputs, so i've changed it to a iterative search, which is a bit slower but should be fine for this context.

covercash2 commented 5 years ago

this is wrong. working on a fix