gs-vertexbuffer: Do not assign uv layers that do not exist

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2018-09-27 03:00:17 +02:00
parent cace17a817
commit 431fee7b9b
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ const gs::vertex gs::vertex_buffer::at(uint32_t idx)
}
gs::vertex vtx(&m_positions[idx], &m_normals[idx], &m_tangents[idx], &m_colors[idx], nullptr);
for (size_t n = 0; n < MAXIMUM_UVW_LAYERS; n++) {
for (size_t n = 0; n < m_layers; n++) {
vtx.uv[n] = &m_uvs[n][idx];
}
return vtx;