Fix lableName typo. (#440)

This commit is contained in:
takiyu
2019-11-26 19:28:57 +09:00
committed by Andreas Süßenbach
parent d2a116b57f
commit 7fc627d6b9
3 changed files with 4 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ VkBool32 debugMessageFunc(VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity
message += "\t"s + "Queue Labels:\n";
for (uint8_t i = 0; i < pCallbackData->queueLabelCount; i++)
{
message += "\t\t"s + "lableName = <" + pCallbackData->pQueueLabels[i].pLabelName + ">\n";
message += "\t\t"s + "labelName = <" + pCallbackData->pQueueLabels[i].pLabelName + ">\n";
}
}
if (0 < pCallbackData->cmdBufLabelCount)