Added missing parentheses around assignment in while condition.
parent
02c2bfa2b8
commit
87de50e1f3
|
@ -764,7 +764,7 @@ void HL1MDLLoader::read_meshes() {
|
||||||
bone_triverts.clear();
|
bone_triverts.clear();
|
||||||
|
|
||||||
int l;
|
int l;
|
||||||
while (l = *(ptricmds++)) {
|
while ((l = *(ptricmds++))) {
|
||||||
bool is_triangle_fan = false;
|
bool is_triangle_fan = false;
|
||||||
|
|
||||||
if (l < 0) {
|
if (l < 0) {
|
||||||
|
|
Loading…
Reference in New Issue