fix unresolved reference error

This commit is contained in:
ohyzha
2024-07-13 22:01:37 +03:00
parent 24f0c9409c
commit 68122cbe2a
3 changed files with 31 additions and 25 deletions

View File

@@ -26,7 +26,7 @@ namespace OpenVulkano
const unsigned int sz = std::size(entriesCount);
for (unsigned int i = 0; i < sz; i++)
{
RegisterShaderTable(reinterpret_cast<const ShaderTableEntry*>(entries[i]), entriesCount[i]);
RegisterShaderTable(reinterpret_cast<const ShaderTableEntry*>(entries[i]), *entriesCount[i]);
}
}