Have pyinstaller always load the whole cliff module #3

Merged
yrriban merged 4 commits from iss2 into trunk 2025-09-06 05:37:39 +00:00
Showing only changes of commit 4cae5987db - Show all commits

View file

@ -15,6 +15,7 @@ class State(enum.Enum):
STARTED = 2
DONE = 3
class Concat(dcc.doom_base.Wad):
def get_parser(self, prog_name):
parser = super().get_parser(prog_name)
@ -49,7 +50,11 @@ class Concat(dcc.doom_base.Wad):
# Presumably fixable, but it's easier to just make one graph per video
# and mux everything together at the end.
# TODO: Support UDoom in literally any way.
d2maps = [str(x).zfill(2) for x in range(1,16)] + ["31","32"] + [str(x) for x in range(16,31)]
d2maps = (
[str(x).zfill(2) for x in range(1, 16)]
+ ["31", "32"]
+ [str(x) for x in range(16, 31)]
)
state = State.NOT_STARTED
for idx in d2maps:
if idx == parsed_args.start_map: