This commit is contained in:
Quinn Dunki 2017-05-28 11:56:27 -07:00
commit b3f9fdfd7d
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ def main(argv):
width = pngdata[0]
height = pngdata[1]
pixelData = pngdata[2]
pixelData = list(pngdata[2])
byteWidth = width/2+1+1 # TODO: Calculate a power of two for this
niceName = os.path.splitext(pngfile)[0].upper()