Fix some initialization order

This commit is contained in:
Jérôme Leclercq
2021-09-24 15:24:21 +02:00
parent ea49f56530
commit 601ed047ba
5 changed files with 8 additions and 8 deletions

View File

@@ -8,8 +8,8 @@
namespace Nz
{
inline OpenGLUploadPool::OpenGLUploadPool(UInt64 blockSize) :
m_blockSize(blockSize),
m_nextAllocationIndex(0)
m_nextAllocationIndex(0),
m_blockSize(blockSize)
{
}
}