mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 08:51:28 +00:00
[qfcc] (rua) Copy spec attributes correctly
If the destination spec didn't already have attributes, nothing was copied due to me-logic (once again) :P
This commit is contained in:
parent
b5259bf8f8
commit
ab239d2d6a
1 changed files with 3 additions and 6 deletions
|
@ -401,12 +401,9 @@ spec_merge (specifier_t spec, specifier_t new)
|
|||
spec.multi_store = true;
|
||||
}
|
||||
}
|
||||
for (auto attr = &spec.attributes; *attr; attr = &(*attr)->next) {
|
||||
if (!(*attr)->next) {
|
||||
(*attr)->next = new.attributes;
|
||||
break;
|
||||
}
|
||||
}
|
||||
auto attr = &spec.attributes;
|
||||
for (; *attr; attr = &(*attr)->next) continue;
|
||||
*attr = new.attributes;
|
||||
spec.sym = new.sym;
|
||||
spec.spec_bits |= new.spec_bits;
|
||||
return spec;
|
||||
|
|
Loading…
Reference in a new issue