Fix another printf format specifier under Windows.

This commit is contained in:
Yamagi 2020-11-14 17:23:06 +01:00
parent 16ae9af406
commit 17357d8c5e

View file

@ -2288,7 +2288,7 @@ uint8_t *QVk_GetStagingBuffer(VkDeviceSize size, int alignment, VkCommandBuffer
stagingBuffer = &vk_stagingBuffers[vk_activeStagingBuffer];
if (size > stagingBuffer->resource.size)
{
R_Printf(PRINT_ALL, "%s: %d: Resize stanging buffer" YQ2_COM_PRIdS "->" YQ2_COM_PRId64 "\n",
R_Printf(PRINT_ALL, "%s: %d: Resize stanging buffer" YQ2_COM_PRId64 "->" YQ2_COM_PRId64 "\n",
__func__, vk_activeStagingBuffer, stagingBuffer->resource.size, size);
DestroyStagingBuffer(stagingBuffer);