Skip to content

Commit df1b88d

Browse files
Fixed formatting string in call to fprintf in VmaRecorder::RecordCreatePool. Issue #40 thanks @baldurk !
1 parent f305aeb commit df1b88d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vk_mem_alloc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10521,8 +10521,8 @@ void VmaRecorder::RecordCreatePool(uint32_t frameIndex, const VmaPoolCreateInfo&
1052110521
createInfo.memoryTypeIndex,
1052210522
createInfo.flags,
1052310523
createInfo.blockSize,
10524-
createInfo.minBlockCount,
10525-
createInfo.maxBlockCount,
10524+
(uint64_t)createInfo.minBlockCount,
10525+
(uint64_t)createInfo.maxBlockCount,
1052610526
createInfo.frameInUseCount,
1052710527
pool);
1052810528
Flush();

0 commit comments

Comments
 (0)