mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
uncomment some lines that shouldn't have been commented (doesn't fix the bug, though)
This commit is contained in:
parent
845b5ab2e2
commit
3b7c83a96f
1 changed files with 2 additions and 2 deletions
|
@ -629,10 +629,10 @@ merge_defgroups (void)
|
|||
}
|
||||
for (i = 0; i < relocs.num_relocs; i = j) {
|
||||
j = i;
|
||||
// while (j < relocs.num_relocs && relocs.relocs[j].type != rel_none)
|
||||
while (j < relocs.num_relocs && relocs.relocs[j].type != rel_none)
|
||||
j++;
|
||||
relocgroup_add_relocs (&final_relocs, relocs.relocs + i, j - i);
|
||||
// while (j < relocs.num_relocs && relocs.relocs[j].type == rel_none)
|
||||
while (j < relocs.num_relocs && relocs.relocs[j].type == rel_none)
|
||||
j++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue