diff options
author | libjet <libj3t@gmail.com> | 2020-05-28 19:47:18 +0100 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2020-05-28 19:47:18 +0100 |
commit | 0cf765a4f521ecd3ef2f7e9e89f1fa3fddb006c4 (patch) | |
tree | 28f80a786579a8ce27dab7ea11e67682fb87ef99 /tools/gfx.py | |
parent | 2e0371d637d9c62d97e20e0f75e4034fc755aab1 (diff) |
Add halloffame.asm and credits.asm
Diffstat (limited to 'tools/gfx.py')
-rw-r--r-- | tools/gfx.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/gfx.py b/tools/gfx.py index ba3e3d3d..461021ba 100644 --- a/tools/gfx.py +++ b/tools/gfx.py @@ -106,6 +106,14 @@ def filepath_rules(filepath): args['pic_dimensions'] = 6, 6 elif name == 'balls': args['width'] = 32 + + elif 'gfx/credits' in filedir: + if name in ['bellossom', 'togepi', 'elekid', 'sentret']: + args['width'] = 32 + elif name == 'theend': + args['width'] = 64 + elif name == 'border': + args['width'] = 72 elif 'gfx/debug' in filedir: if name == 'color_test': |