diff options
author | entrpntr <entrpntr@gmail.com> | 2020-05-14 12:05:34 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-05-14 12:40:24 -0400 |
commit | a30d695331b33a3a43b70539b0577f5c7f6c6bca (patch) | |
tree | f8a5c19df375a94e8405da5a3f4736570728bc7c /tools/gfx.py | |
parent | 18ca6b3ea86e9eb65dd547649a2fcf3f3da28ab7 (diff) |
Clean up some palette stuff, update main.asm and layout.link.
Diffstat (limited to 'tools/gfx.py')
-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 b84aa57d..79dd6f61 100644 --- a/tools/gfx.py +++ b/tools/gfx.py @@ -107,6 +107,10 @@ def filepath_rules(filepath): elif name == 'balls': args['width'] = 32 + elif 'gfx/font' in filedir: + if name == 'font_inversed': + args['width'] = 128 + elif 'gfx/icons' in filedir: if name == 'mail_big': args['width'] = 16 |