1
0
mirror of https://github.com/nothings/stb synced 2025-03-28 21:13:20 +00:00

Merge b79d23717c48d9424cfb2a0b793fb43db06ac96a into f0569113c93ad095470c54bf34a17b36646bbbb5

This commit is contained in:
Josh Simmons 2025-03-18 12:53:28 +00:00 committed by GitHub
commit 023f848132
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,6 +38,7 @@
// Bugfixes / warning fixes
// Jeremy Jaussaud
// Fabian Giesen
// Joshua Simmons
//
// Version history:
//
@ -529,7 +530,11 @@ static int STBRP__CDECL rect_height_compare(const void *a, const void *b)
return -1;
if (p->h < q->h)
return 1;
return (p->w > q->w) ? -1 : (p->w < q->w);
if (p->w > q->w)
return -1;
if (p->w < q->w)
return 1;
return (p->was_packed < q->was_packed) ? -1 : (p->was_packed > q->was_packed);
}
static int STBRP__CDECL rect_original_order(const void *a, const void *b)