mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
Fix a thinko
Wrong var for computing number of slots used.
This commit is contained in:
parent
61036378e2
commit
69c110193a
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ QFV_CreateDescriptorPool (qfv_device_t *device,
|
|||
|
||||
VkDescriptorPoolCreateInfo createInfo = {
|
||||
VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO, 0,
|
||||
flags, maxSets, ps - poolsize_pool, poolsize_pool,
|
||||
flags, maxSets, poolsize_next - poolsize_pool, poolsize_pool,
|
||||
};
|
||||
|
||||
qfv_descriptorpool_t *descriptorpool = malloc (sizeof (descriptorpool));
|
||||
|
|
Loading…
Reference in a new issue