Rendering works now

This commit is contained in:
Dynamitos
2021-12-27 15:04:53 +01:00
parent 79ced0a30f
commit b2718dde70
15 changed files with 324 additions and 278 deletions
+1 -1
View File
@@ -504,7 +504,7 @@ namespace Seele
// As well as default initialize the others
for(size_type i = arraySize; i < newSize; ++i)
{
std::allocator_traits<allocator_type>::construct(allocator, &_data[i], std::move(value));
std::allocator_traits<allocator_type>::construct(allocator, &newData[i], std::move(value));
}
deallocateArray(_data, allocated);
arraySize = newSize;