mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-13 13:30:44 +00:00
Fix format string
This commit is contained in:
@@ -1377,7 +1377,7 @@ void VulkanPipelineStateViewer::setShaderState(const VKPipe::Shader &stage,
|
||||
|
||||
RDTreeWidgetItem *node =
|
||||
new RDTreeWidgetItem({QString(), QString(), ToQStr(cblock.name), tr("Push constants"),
|
||||
QString(), tr("%1 Variable(s)", "", cblock.variables.count)});
|
||||
QString(), tr("%1 Variables").arg(cblock.variables.count)});
|
||||
|
||||
node->setTag(QVariant::fromValue(VulkanCBufferTag(cb, 0)));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user