From e74dc79903f3e59b15a48f112b5c804fea2220b0 Mon Sep 17 00:00:00 2001 From: Adam Sawicki Date: Fri, 26 Feb 2021 12:16:07 +0100 Subject: [PATCH] Fix VmaReplay after removing vmaResizeAllocation function --- src/VmaReplay/VmaReplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/VmaReplay/VmaReplay.cpp b/src/VmaReplay/VmaReplay.cpp index 2fac59e..6d01e92 100644 --- a/src/VmaReplay/VmaReplay.cpp +++ b/src/VmaReplay/VmaReplay.cpp @@ -3683,7 +3683,8 @@ void Player::ExecuteResizeAllocation(size_t lineNumber, const CsvSplit& csvSplit const auto it = m_Allocations.find(origPtr); if(it != m_Allocations.end()) { - vmaResizeAllocation(m_Allocator, it->second.allocation, newSize); + // Do nothing - the function was deprecated and has been removed. + //vmaResizeAllocation(m_Allocator, it->second.allocation, newSize); UpdateMemStats(); } else