diff options
author | entrpntr <12521136+entrpntr@users.noreply.github.com> | 2020-05-19 19:14:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 19:14:32 -0400 |
commit | cf106d4545d6ecb08ad7434efa38ec61a38dbcb1 (patch) | |
tree | 59b746a1dd8190c0f35c31670419703e9c8b39f4 /tools | |
parent | 8a924f1f783572ff395f617f99546b4c949c8b04 (diff) | |
parent | 1fca66421ad18d7dc979d4871caf653febd9fa20 (diff) |
Merge pull request #32 from libjet/bank10
Disassemble bank $10
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gfx.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/gfx.py b/tools/gfx.py index 79dd6f61..ff0802c7 100644 --- a/tools/gfx.py +++ b/tools/gfx.py @@ -164,6 +164,10 @@ def filepath_rules(filepath): if name == 'chris_back': args['pic_dimensions'] = 6, 6 + elif 'gfx/pokedex' in filedir: + if name in ['slowpoke', 'pokedex']: + args['width'] = 128 + elif 'gfx/pokegear' in filedir: if name == 'pokegear_sprites': args['width'] = 16 |