From 755fd47121ce0c77ef11818e4987790ae99c2eba Mon Sep 17 00:00:00 2001 From: Adam Sawicki Date: Fri, 24 Apr 2020 17:05:07 +0200 Subject: [PATCH] Minor fix in comment --- src/vk_mem_alloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vk_mem_alloc.h b/src/vk_mem_alloc.h index c4d6528..640b3d0 100644 --- a/src/vk_mem_alloc.h +++ b/src/vk_mem_alloc.h @@ -15331,7 +15331,7 @@ VmaRecorder::UserDataString::UserDataString(VmaAllocationCreateFlags allocFlags, } else { - // If VMA_ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT is not specified, convert the string's memory address to a std::string and store it. + // If VMA_ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT is not specified, convert the string's memory address to a string and store it. snprintf(m_PtrStr, 17, "%p", pUserData); m_Str = m_PtrStr; }