Fix missing semicolons

This commit is contained in:
2025-02-19 15:31:46 +02:00
parent f4c13032a2
commit e2e77385b1
2 changed files with 3 additions and 3 deletions

View File

@@ -280,7 +280,7 @@ void CmdBufferManagerVulkan::WaitForCmdBuffer(CmdBufferVulkan* cmdBuffer, float
void CmdBufferManagerVulkan::PrepareForNewActiveCommandBuffer()
{
PROFILE_CPU();
ASSERT_LOW_LAYER(_activeCmdBuffer == nullptr)
ASSERT_LOW_LAYER(_activeCmdBuffer == nullptr);
for (int32 i = 0; i < _pool._cmdBuffers.Count(); i++)
{
auto cmdBuffer = _pool._cmdBuffers.Get()[i];