Graphics/BakedFrameGraph: Fix Resize method always returning true

This commit is contained in:
Jérôme Leclercq 2021-07-17 23:49:45 +02:00
parent cdad013c60
commit 532fb7641f
1 changed files with 3 additions and 0 deletions

View File

@ -178,6 +178,9 @@ namespace Nz
passData.forceCommandBufferRegeneration = true;
}
m_width = width;
m_height = height;
return true;
}
}