diff options
author | YamaArashi <shadow962@live.com> | 2016-09-02 11:32:57 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-02 11:32:57 -0700 |
commit | 4c94b11ff3d217c13430d211e29aa0c639755e68 (patch) | |
tree | f7023ddb15570824bee49fa65ac46fa8d36250dc | |
parent | 3304914ac67574230c3bb72819c71655abea07d0 (diff) |
fix weird ifdef
-rw-r--r-- | data/graphics.s | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/data/graphics.s b/data/graphics.s index 733ee94a3..89ba9e87c 100644 --- a/data/graphics.s +++ b/data/graphics.s @@ -4342,11 +4342,14 @@ gTitleScreenLogoShinePalette:: gUnknown_08E9D8CC:: @ 8E9D8CC .ifdef SAPPHIRE .incbin "graphics/title_screen/pokemon_sapphire.8bpp.lz" -gVersionTiles:: - .incbin "graphics/title_screen/sapphireversion.8bpp.lz" .else .incbin "graphics/title_screen/pokemon_ruby.8bpp.lz" + .endif + gVersionTiles:: + .ifdef SAPPHIRE + .incbin "graphics/title_screen/sapphireversion.8bpp.lz" + .else .incbin "graphics/title_screen/rubyversion.8bpp.lz" .endif |