Merge pull request #320 from jeroenbakker-atmind/blender-fix-gnu-compilation-warning

Fix compilation warning.
This commit is contained in:
Adam Sawicki 2023-02-02 12:00:15 +01:00 committed by GitHub
commit 708428c219
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13364,8 +13364,8 @@ bool VmaDefragmentationContext_T::IncrementCounters(VkDeviceSize bytes)
// Early return when max found
if (++m_PassStats.allocationsMoved >= m_MaxPassAllocations || m_PassStats.bytesMoved >= m_MaxPassBytes)
{
VMA_ASSERT(m_PassStats.allocationsMoved == m_MaxPassAllocations ||
m_PassStats.bytesMoved == m_MaxPassBytes && "Exceeded maximal pass threshold!");
VMA_ASSERT((m_PassStats.allocationsMoved == m_MaxPassAllocations ||
m_PassStats.bytesMoved == m_MaxPassBytes) && "Exceeded maximal pass threshold!");
return true;
}
return false;