Have pyinstaller always load the whole cliff module #3
1 changed files with 6 additions and 1 deletions
|
@ -15,6 +15,7 @@ class State(enum.Enum):
|
||||||
STARTED = 2
|
STARTED = 2
|
||||||
DONE = 3
|
DONE = 3
|
||||||
|
|
||||||
|
|
||||||
class Concat(dcc.doom_base.Wad):
|
class Concat(dcc.doom_base.Wad):
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super().get_parser(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
|
# Presumably fixable, but it's easier to just make one graph per video
|
||||||
# and mux everything together at the end.
|
# and mux everything together at the end.
|
||||||
# TODO: Support UDoom in literally any way.
|
# 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
|
state = State.NOT_STARTED
|
||||||
for idx in d2maps:
|
for idx in d2maps:
|
||||||
if idx == parsed_args.start_map:
|
if idx == parsed_args.start_map:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue