diff --git a/bin/VulkanSample_Release_2015.exe b/bin/VulkanSample_Release_2015.exe index f93a6ba..c5e7ddc 100644 Binary files a/bin/VulkanSample_Release_2015.exe and b/bin/VulkanSample_Release_2015.exe differ diff --git a/src/vk_mem_alloc.h b/src/vk_mem_alloc.h index cb343c4..8abd528 100644 --- a/src/vk_mem_alloc.h +++ b/src/vk_mem_alloc.h @@ -836,11 +836,11 @@ remove them if not needed. #if VMA_STATS_STRING_ENABLED static inline void VmaUint32ToStr(char* outStr, size_t strLen, uint32_t num) { - _ultoa_s(num, outStr, strLen, 10); + snprintf(outStr, strLen, "%u", num); } static inline void VmaUint64ToStr(char* outStr, size_t strLen, uint64_t num) { - _ui64toa_s(num, outStr, strLen, 10); + snprintf(outStr, strLen, "%llu", num); } #endif