stb_reck_pack: Removed unused assigned variables (under #ifdef _DEBUG wrap)

pull/562/head
Omar Cornut 2018-02-13 11:21:10 +01:00
parent e6afb9cbae
commit eb3c5db96c
1 changed files with 0 additions and 3 deletions

View File

@ -492,17 +492,14 @@ static stbrp__findresult stbrp__skyline_pack_rectangle(stbrp_context *context, i
STBRP_ASSERT(cur->next == NULL);
{
stbrp_node *L1 = NULL, *L2 = NULL;
int count=0;
cur = context->active_head;
while (cur) {
L1 = cur;
cur = cur->next;
++count;
}
cur = context->free_head;
while (cur) {
L2 = cur;
cur = cur->next;
++count;
}