From 1a7f6cce3ae61f8bbd4aac5896ab2df85023175a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 25 Sep 2023 15:34:28 +0100 Subject: [PATCH] Fixed typo --- src/vsg/app/Viewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vsg/app/Viewer.cpp b/src/vsg/app/Viewer.cpp index ade554c29..bd0e10447 100644 --- a/src/vsg/app/Viewer.cpp +++ b/src/vsg/app/Viewer.cpp @@ -483,7 +483,7 @@ void Viewer::assignRecordAndSubmitTaskAndPresentation(CommandGraphs in_commandGr // get main queue used for RecordAndSubmitTask ref_ptr mainQueue = device->getQueue(deviceQueueFamily.queueFamily); - // get presentat queue if required/supported + // get presentation queue if required/supported ref_ptr presentQueue; if (deviceQueueFamily.presentFamily >= 0) presentQueue = device->getQueue(deviceQueueFamily.presentFamily);