diff options
author | Bryan Bishop <kanzure@gmail.com> | 2014-02-06 19:02:31 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2014-02-06 19:02:31 -0600 |
commit | 31ec935141d1acac3301c19a8b169ec195b8ae24 (patch) | |
tree | 19b729371dfce6303751d780432ee6adfa08a03d /pokemontools/map_editor.py | |
parent | 61b83803be9ccdcdcd95b7f8ea7accafab8d4d4d (diff) | |
parent | b18976e8edc2450a5b589457bbeea0854a2ac5e4 (diff) |
Merge pull request #67 from yenatch/merge-old-commits
Merge some older commits that never made it into pull requests
Diffstat (limited to 'pokemontools/map_editor.py')
-rw-r--r-- | pokemontools/map_editor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/map_editor.py b/pokemontools/map_editor.py index a7aeda1..47b7d95 100644 --- a/pokemontools/map_editor.py +++ b/pokemontools/map_editor.py @@ -448,7 +448,7 @@ class Tileset: def get_tiles(self): filename = self.get_tileset_gfx_filename() if not os.path.exists(filename): - gfx.export_lz_to_png(filename.replace('.png','.lz')) + gfx.export_2bpp_to_png(filename.replace('.png','.2bpp')) self.img = Image.open(filename) self.img.width, self.img.height = self.img.size self.tiles = [] |