diff options
author | yenatch <yenatch@gmail.com> | 2015-08-29 14:05:35 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-08-29 14:05:35 -0400 |
commit | 680bb02d29dd3234c54b08b74ad084ffda809a35 (patch) | |
tree | 45f3fe61609d189235fe60e546c3844598246799 /pokemontools/gfx.py | |
parent | 5ad74a89aee5181b30eed0b11ef75c1b01ed41eb (diff) | |
parent | 3a6ef54a5e26644699b98d9b73998df5673f4e72 (diff) |
Merge pull request #92 from yenatch/master
Make gfx.py more extensible.
Diffstat (limited to 'pokemontools/gfx.py')
-rw-r--r-- | pokemontools/gfx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/gfx.py b/pokemontools/gfx.py index 905ee55..049192f 100644 --- a/pokemontools/gfx.py +++ b/pokemontools/gfx.py @@ -726,7 +726,7 @@ def read_filename_arguments(filename): return parsed_arguments -def export_2bpp_to_png(filein, fileout=None, pal_file=None, height=0, width=0, tile_padding=0, pic_dimensions=None): +def export_2bpp_to_png(filein, fileout=None, pal_file=None, height=0, width=0, tile_padding=0, pic_dimensions=None, **kwargs): if fileout == None: fileout = os.path.splitext(filein)[0] + '.png' |