Fixed formatting string in call to fprintf in VmaRecorder::RecordCreatePool. Issue #40 thanks @baldurk !
This commit is contained in:
parent
f305aebdfd
commit
df1b88d387
1 changed files with 2 additions and 2 deletions
|
@ -10521,8 +10521,8 @@ void VmaRecorder::RecordCreatePool(uint32_t frameIndex, const VmaPoolCreateInfo&
|
||||||
createInfo.memoryTypeIndex,
|
createInfo.memoryTypeIndex,
|
||||||
createInfo.flags,
|
createInfo.flags,
|
||||||
createInfo.blockSize,
|
createInfo.blockSize,
|
||||||
createInfo.minBlockCount,
|
(uint64_t)createInfo.minBlockCount,
|
||||||
createInfo.maxBlockCount,
|
(uint64_t)createInfo.maxBlockCount,
|
||||||
createInfo.frameInUseCount,
|
createInfo.frameInUseCount,
|
||||||
pool);
|
pool);
|
||||||
Flush();
|
Flush();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue