mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-16 21:05:12 +00:00
[PAL N64] Completely match pal-1.0 and pal-1.1 and add to CI (#2246)
* [PAL N64] Match pal-1.0 and pal-1.1 and add to CI * bss fixes from Jenkins
This commit is contained in:
parent
04498f808f
commit
f7f38ff874
30 changed files with 71 additions and 48 deletions
|
@ -611,7 +611,7 @@ def format_pragma(amounts: dict[str, int], max_line_length: int) -> list[str]:
|
|||
first = True
|
||||
for version, amount in sorted(amounts.items()):
|
||||
part = f"{version}:{amount}"
|
||||
if len(current_line) + len(part) + len('" \\') > max_line_length:
|
||||
if len(current_line) + len(" ") + len(part) + len('" \\') > max_line_length:
|
||||
lines.append(current_line + '" ')
|
||||
current_line = " " * len(pragma_start) + '"'
|
||||
first = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue