diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-06-24 02:31:59 +0200 |
---|---|---|
committer | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-06-24 02:31:59 +0200 |
commit | f5dc0e43581069e28cf0a8143717cf28f75d33d9 (patch) | |
tree | 729a20cae830611b45af83d646d0496ca60896b1 | |
parent | 27a5432556ae3764df066287df37ee0f47168185 (diff) |
conditionally include other font
-rw-r--r-- | data/graphics.s | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/graphics.s b/data/graphics.s index 6ab29e0a0..a8eeae6aa 100644 --- a/data/graphics.s +++ b/data/graphics.s @@ -4560,19 +4560,27 @@ gDecoration10000_Gfx:: @ 8EA2A44 .align 2 gFont3LatinGlyphs:: @ 8EA2C44 +.ifdef ENGLISH .if REVISION >= 1 .incbin "graphics/fonts/font3_lat_rev1.4bpp" .else .incbin "graphics/fonts/font3_lat.4bpp" .endif +.else + .incbin "graphics/fonts/font3_lat.4bpp" +.endif .align 2 gFont4LatinGlyphs:: @ 8EA6BC4 +.ifdef ENGLISH .if REVISION >= 1 .incbin "graphics/fonts/font4_lat_rev1.4bpp" .else .incbin "graphics/fonts/font4_lat.4bpp" .endif +.else + .incbin "graphics/fonts/font4_lat.4bpp.bin" +.endif .align 2 gFont3JapaneseGlyphs:: @ 8EA8744 |