diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-04-17 11:02:29 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-04-17 11:02:29 -0400 |
commit | 164e1b89afc1773a14598c377c8c8d0bfa01a1a1 (patch) | |
tree | 82d2d640096a0cb3fc2dddec35fb9ac5a2addfef /docs/design_flaws.md | |
parent | bfc6612cbf0460955deca28e9ad92d0ff8856668 (diff) |
Rename pokecrystal.link to layout.link
This is independent of the project name, and clearly applies to pokecrystal11, pokecrystal-au, etc.
Diffstat (limited to 'docs/design_flaws.md')
-rw-r--r-- | docs/design_flaws.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/design_flaws.md b/docs/design_flaws.md index f1a672346..26560b58f 100644 --- a/docs/design_flaws.md +++ b/docs/design_flaws.md @@ -85,7 +85,7 @@ In [gfx/pics.asm](https://github.com/pret/pokecrystal/blob/master/gfx/pics.asm): ```asm ; PokemonPicPointers and UnownPicPointers are assumed to start at the same -; address, but in different banks. This is enforced in pokecrystal.link. +; address, but in different banks. This is enforced in layout.link. SECTION "Pic Pointers", ROMX @@ -98,7 +98,7 @@ SECTION "Unown Pic Pointers", ROMX INCLUDE "data/pokemon/unown_pic_pointers.asm" ``` -In [pokecrystal.link](https://github.com/pret/pokecrystal/blob/master/pokecrystal.link): +In [layout.link](https://github.com/pret/pokecrystal/blob/master/layout.link): ``` ROMX $48 @@ -113,7 +113,7 @@ ROMX $49 **Fix:** -Don't enforce `org $4000` in [pokecrystal.link](https://github.com/pret/pokecrystal/blob/master/pokecrystal.link). +Don't enforce `org $4000` in [layout.link](https://github.com/pret/pokecrystal/blob/master/layout.link). Edit `GetFrontpicPointer`: |