Add missing commas in string name of vkCmdClearAttachments

This commit is contained in:
baldurk
2019-01-23 18:36:39 +00:00
parent 604854b87c
commit 953661fc81
@@ -2288,7 +2288,11 @@ bool WrappedVulkan::Serialise_vkCmdClearAttachments(SerialiserType &ser,
string name = "vkCmdClearAttachments(";
for(uint32_t a = 0; a < attachmentCount; a++)
{
name += ToStr(pAttachments[a].colorAttachment);
if(a + 1 < attachmentCount)
name += ", ";
}
name += ")";
DrawcallDescription draw;