less broken

This commit is contained in:
Benjamin Kyd
2019-02-24 19:10:34 +00:00
parent 14b0b9a155
commit 435a6806b9
7 changed files with 39 additions and 110 deletions

View File

@@ -23,7 +23,7 @@ void OBJLtoGLM(std::vector<objl::Vertex>& inVertArr,
}
void UintToGLuint(std::vector<unsigned int>& inIndices,
std::vector<GLushort>& outIndices) {
std::vector<GLuint>& outIndices) {
for (int i = 0; i < inIndices.size(); i++) {
outIndices.push_back(inIndices[i]);