mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2025-05-20 11:48:34 +00:00
Fixed bug with assert failure when JSON dump is created while a custom pool exist with specified string name
This commit is contained in:
parent
5b598e0a35
commit
2d2a9e3df3
2 changed files with 7 additions and 2 deletions
include
|
@ -16006,8 +16006,8 @@ void VmaAllocator_T::PrintDetailedMap(VmaJsonWriter& json)
|
|||
json.ContinueString_Size(index++);
|
||||
if (pool->GetName())
|
||||
{
|
||||
json.WriteString(" - ");
|
||||
json.WriteString(pool->GetName());
|
||||
json.ContinueString(" - ");
|
||||
json.ContinueString(pool->GetName());
|
||||
}
|
||||
json.EndString();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue