summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@github.com>2013-02-12 03:17:05 -0500
committeryenatch <yenatch@github.com>2013-02-12 03:31:35 -0500
commit61f08140d683fb8b939f23d10fbc77006830cc68 (patch)
treec4641ac738a85451438b58934f9023036d67867a
parentd534f746353c802809fedc9a37a07d3032304e0d (diff)
Fix png export orientation
A quirk of the Decompressed class dissociated the orientation from the output attribute. The makefile no longer suppresses output since it's still relevant. original-commit-id: ad0578fda0aec42c28e3db26bbf68d06aa19f63e
-rw-r--r--gfx.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gfx.py b/gfx.py
index c641ab7..d2e2abf 100644
--- a/gfx.py
+++ b/gfx.py
@@ -610,6 +610,8 @@ class Decompressed:
self.tiles = transpose(self.tiles)
self.pic = connect(self.tiles)
+ self.output = self.pic + self.animtiles
+
def decompress(self):
"""replica of crystal's decompression"""