diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-18 22:26:54 -0800 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-18 22:26:54 -0800 |
commit | 46782bf6dc938ab8ad4f8c65c2df924fd7e1d6a7 (patch) | |
tree | debf7e6e493961900ae9d16df9eedaee6176ba3d /pokemontools/gfx.py | |
parent | e673a9f7b25853b38e78799086d484352c8320f4 (diff) | |
parent | 185a29698e5d3175cecbd779103e1a9838ff0ecc (diff) |
Merge pull request #56 from kanzure/map-editor-stuff
Remove globals from the map editor
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 3c5346e..8397337 100644 --- a/pokemontools/gfx.py +++ b/pokemontools/gfx.py @@ -13,7 +13,7 @@ import trainers import romstr if __name__ != "__main__": - rom = romstr.RomStr(filename=config.rom_path) + rom = romstr.RomStr.load(filename=config.rom_path) def split(list_, interval): |