diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-02-22 17:13:29 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-02-22 17:39:06 +0100 |
commit | e8bc86d1fedfc6be5a99d426ffc236c4fcf494f4 (patch) | |
tree | dabac449a3cf7bf08c6cb134701ce296a5403c61 /engine/link.asm | |
parent | c3abe8f88b62b121ec7e76cac91467df7471223a (diff) |
Pkmn -> Mon
Since we're aiming for consistency across the codebase, I believe it
includes a uniform way to refer to the creatures this game consists of
in the labels of the code.
The only exceptions to this rule are labels referring to things named
through the use of the <PK><MN> or <PKMN> characters, in which case PKMN
is used.
Most of this was already consistent enough™, I just picked the
convention with the most occurences and fixed the outliers.
Diffstat (limited to 'engine/link.asm')
-rwxr-xr-x | engine/link.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/link.asm b/engine/link.asm index 59d1a149a..4c22e18ea 100755 --- a/engine/link.asm +++ b/engine/link.asm @@ -790,7 +790,7 @@ Link_PrepPartyData_Gen1: ; 28499 add hl, bc ld c, STAT_SATK ld b, TRUE - predef CalcPkmnStatC + predef CalcMonStatC pop bc pop de @@ -1069,7 +1069,7 @@ Function2868a: ; 2868a add hl, bc ld c, STAT_SATK ld b, TRUE - predef CalcPkmnStatC + predef CalcMonStatC pop bc pop hl ld a, [hQuotient + 1] @@ -1082,7 +1082,7 @@ Function2868a: ; 2868a add hl, bc ld c, STAT_SDEF ld b, TRUE - predef CalcPkmnStatC + predef CalcMonStatC pop bc pop hl ld a, [hQuotient + 1] |