Skip to content

Commit e2d93ae

Browse files
Minor fix in BlockMetadata::DebugLogAllocation
1 parent 3924c72 commit e2d93ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/D3D12MemAlloc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3019,7 +3019,7 @@ void BlockMetadata::DebugLogAllocation(UINT64 offset, UINT64 size, void* private
30193019
LPCWSTR name = allocation->GetName();
30203020

30213021
D3D12MA_DEBUG_LOG(L"UNFREED ALLOCATION; Offset: %llu; Size: %llu; PrivateData: %p; Name: %s",
3022-
offset, size, privateData, name ? name : L"D3D12MA_Empty");
3022+
offset, size, privateData, name ? name : L"");
30233023
}
30243024
}
30253025

0 commit comments

Comments
 (0)