makeqstrdata: ensure _lt and _gt qstrs are sorted early
this fixes a build error because their numbers have to be <256
This commit is contained in:
parent
018baf75d5
commit
9104654930
@ -342,6 +342,10 @@ def parse_input_headers_with_translations(infiles):
|
|||||||
order = -190000
|
order = -190000
|
||||||
elif ident.startswith("__"):
|
elif ident.startswith("__"):
|
||||||
order -= 100000
|
order -= 100000
|
||||||
|
elif ident.startswith("_lt"):
|
||||||
|
order -= 100000
|
||||||
|
elif ident.startswith("_gt"):
|
||||||
|
order -= 100000
|
||||||
qstrs[ident] = (order, ident, qstr)
|
qstrs[ident] = (order, ident, qstr)
|
||||||
|
|
||||||
if not qcfgs and qstrs:
|
if not qcfgs and qstrs:
|
||||||
|
Loading…
Reference in New Issue
Block a user