Skip to content

Commit 4ebe099

Browse files
Merge pull request #36 from rbertin-aso/master
Fix export of custom pool names
2 parents 17f992a + a5b20c0 commit 4ebe099

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/D3D12MemAlloc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7449,8 +7449,8 @@ void AllocatorPimpl::BuildStatsString(WCHAR** ppStatsString, BOOL detailedMap)
74497449
json.ContinueString(index++);
74507450
if (item->GetName())
74517451
{
7452-
json.WriteString(L" - ");
7453-
json.WriteString(item->GetName());
7452+
json.ContinueString(L" - ");
7453+
json.ContinueString(item->GetName());
74547454
}
74557455
json.EndString();
74567456

0 commit comments

Comments
 (0)