diff options
author | mid-kid <esteve.varela@gmail.com> | 2020-04-17 18:25:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 18:25:59 +0000 |
commit | 19aee926af86c1351ca85ca45da26f5d6f3cd8d6 (patch) | |
tree | 82d2d640096a0cb3fc2dddec35fb9ac5a2addfef /docs | |
parent | 93ed0ed19ce615f99a36062cd2133e8ee2e75cc1 (diff) | |
parent | 164e1b89afc1773a14598c377c8c8d0bfa01a1a1 (diff) |
Merge pull request #712 from Rangi42/master
Miscellaneous fixes
Diffstat (limited to 'docs')
-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`: |