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

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