mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
fix a silly bug with framed faces. must have been tired
This commit is contained in:
parent
0b120aecbc
commit
ce5f4b92ca
1 changed files with 1 additions and 1 deletions
|
@ -338,7 +338,7 @@ fixup_center_face (struct box_def *box, int c_face)
|
|||
}
|
||||
for (i = 0; i < 4; i++) {
|
||||
int ind = face_loop[c_face][i];
|
||||
insert_cube_vertexen (box, ind, v[i], v[(i - 1) % 4]);
|
||||
insert_cube_vertexen (box, ind, v[i], v[(i - 1) & 3]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue