This commit is contained in:
4am 2018-02-21 16:02:26 -05:00
parent 19a511e44f
commit 0105bc0fa8
35 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ dsk: md asm
txt: dsk
mkdir -p build/text
$(PY3) bin/textnormalize.py text/*
$(PY3) bin/textnormalize.py res/text/*
cd build && $(CADIUS) ADDFOLDER "$(DISK)" "/PITCH.DARK/TEXT" text
artwork: dsk

View File

@ -7,7 +7,7 @@ for f in sys.argv[1:]:
linelength = 0
with open(f) as buffer:
lines = buffer.readlines()
shortf = f.replace(".txt", "").replace("text/", "").upper()
shortf = f.replace(".txt", "").replace("res/text/", "").upper()
newf = "build/text/" + shortf
fileinfo.append(shortf + "=Type(04),AuxType(0000),VersionCreate(70),MinVersion(BE),Access(C3)")
with open(newf, 'w') as buffer: