mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-08 18:34:12 -05:00
Merge pull request #54 from kanzure/fix-gfx-config
Make gfx.py not depend on crystal.py
This commit is contained in:
commit
59fd9978d9
|
|
@ -5,12 +5,14 @@ import sys
|
|||
import png
|
||||
from math import sqrt, floor, ceil
|
||||
|
||||
import crystal
|
||||
import configuration
|
||||
config = configuration.Config()
|
||||
|
||||
import pokemon_constants
|
||||
import trainers
|
||||
|
||||
if __name__ != "__main__":
|
||||
rom = crystal.load_rom()
|
||||
rom = romstr.RomStr(filename=config.rom_path)
|
||||
|
||||
def hex_dump(input, debug=True):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user