diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-11-04 17:43:37 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-11-04 17:43:37 -0500 |
commit | d076159745e688bd58f1e512c4e0fcdd942161e9 (patch) | |
tree | 0881ee587077c6f3395aa33305ef0200199791aa | |
parent | 51720e1e3c5de3f70778f6fb4e88b29f4ab66c4a (diff) |
Don't use colons for local labels in LoadSpecialMapPalette
-rw-r--r-- | engine/tilesets/tileset_palettes.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/engine/tilesets/tileset_palettes.asm b/engine/tilesets/tileset_palettes.asm index 3654d7e3c..994102238 100644 --- a/engine/tilesets/tileset_palettes.asm +++ b/engine/tilesets/tileset_palettes.asm @@ -14,17 +14,17 @@ LoadSpecialMapPalette: jr z, .mansion_mobile jr .do_nothing -.pokecom_2f: +.pokecom_2f call LoadPokeComPalette scf ret -.battle_tower_inside: +.battle_tower_inside call LoadBattleTowerInsidePalette scf ret -.ice_path: +.ice_path ld a, [wEnvironment] and $7 cp INDOOR ; Hall of Fame @@ -33,22 +33,22 @@ LoadSpecialMapPalette: scf ret -.house: +.house call LoadHousePalette scf ret -.radio_tower: +.radio_tower call LoadRadioTowerPalette scf ret -.mansion_mobile: +.mansion_mobile call LoadMansionPalette scf ret -.do_nothing: +.do_nothing and a ret |