diff options
author | yenatch <yenatch@gmail.com> | 2013-05-17 17:28:37 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-05-18 04:46:52 -0400 |
commit | 77e365d49ffc6caa5364b405a263e4a43938def1 (patch) | |
tree | ab167aca0c9b8dd9b01544df6d1661c500f0dbf7 /extras | |
parent | 604cafc27859700e45f4c54237b54f3c584cf458 (diff) |
gfx: fix a typo
Diffstat (limited to 'extras')
-rw-r--r-- | extras/gfx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/gfx.py b/extras/gfx.py index 53f954b21..8898f77cf 100644 --- a/extras/gfx.py +++ b/extras/gfx.py @@ -1554,7 +1554,7 @@ if __name__ == "__main__": to_2bpp(name+'.png', name+'.2bpp') pic = open(name+'.2bpp', 'rb').read() - to_file(name+'.lz', Compressed(pic + anim, 'vert').output) + to_file(name+'.lz', Compressed(pic, 'vert').output) # python gfx.py png-to-lz [png] |