Merge pull request #3303 from malortie/fix-loop-variable-HL1MDLLoader

Fixed variable in loop - HL1MDLLoader.cpp
pull/3301/head^2
Kim Kulling 2020-06-30 21:11:32 +02:00 committed by GitHub
commit dea412c9a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -829,7 +829,7 @@ void HL1MDLLoader::read_meshes() {
}
} else {
for (int faceIdx = 0; faceIdx < num_faces; ++faceIdx) {
if (i & 1) {
if (faceIdx & 1) {
// Preserve winding order.
mesh_faces.push_back(HL1MeshFace{
tricmds[faceIdx + 1],