Ensure width and height of entities is set.
This commit is contained in:
parent
61068f04f4
commit
ef1d0b4f4a
|
@ -319,6 +319,8 @@ static void loadEntities(cJSON *node)
|
||||||
e->flags = flagsToLong(cJSON_GetObjectItem(node, "flags")->valuestring);
|
e->flags = flagsToLong(cJSON_GetObjectItem(node, "flags")->valuestring);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SDL_QueryTexture(e->texture, NULL, NULL, &e->w, &e->h);
|
||||||
|
|
||||||
node = node->next;
|
node = node->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -375,6 +377,8 @@ static void loadEntityGroups(cJSON *node)
|
||||||
|
|
||||||
e->x += (rand() % scatter) - (rand() % scatter);
|
e->x += (rand() % scatter) - (rand() % scatter);
|
||||||
e->y += (rand() % scatter) - (rand() % scatter);
|
e->y += (rand() % scatter) - (rand() % scatter);
|
||||||
|
|
||||||
|
SDL_QueryTexture(e->texture, NULL, NULL, &e->w, &e->h);
|
||||||
}
|
}
|
||||||
|
|
||||||
node = node->next;
|
node = node->next;
|
||||||
|
|
Loading…
Reference in New Issue