SAUCEToAnsi.py: updated.

This commit is contained in:
Lucio Andrés Illanes Albornoz 2019-08-28 10:32:26 +02:00
parent a7da0aa679
commit 155a15eeb4

View File

@ -18,7 +18,6 @@ def SAUCEToAnsi(inPathName, outPathName):
return 1
else:
width, height = struct.unpack("H", inFile.read(2))[0], struct.unpack("H", inFile.read(2))[0]
print(width)
with open(outPathName, "w+") as outFile:
inFile.seek(0, 0)
inFileData, row, rowChars = inFile.read(inFileStat.st_size - 128).decode("cp437"), "", 0