Skip to content

Commit

Permalink
DotPiwall generator tile_definition function fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
banzsolt committed Sep 19, 2016
1 parent a16b9fe commit a5fc3e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotpiwall.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def wall_definition(self):
def tile_definition(self, tile):
s = []
s.append('[%s_%s]' % (self.name, tile.id))
s.append('wall=%s' % self.name)
s.append('wall=%s_wall' % self.name)
s.append('width=%d' % tile.W())
s.append('height=%d' % tile.H())
s.append('x=%d' % tile.wx)
Expand Down

0 comments on commit a5fc3e2

Please sign in to comment.