diff options
author | Meowsy <Meowsy@users.noreply.github.com> | 2018-12-15 18:32:50 -0500 |
---|---|---|
committer | Meowsy <Meowsy@users.noreply.github.com> | 2018-12-15 18:32:50 -0500 |
commit | 3d8cecb66238a5597e3675f81ec072e650afdf5c (patch) | |
tree | 2e6e2ce8702326e0a10d78b840570a6b2f44eed2 | |
parent | 83c3f136551bc79bfffb4630469cc79c9f06951c (diff) |
Use correct term.
-rw-r--r-- | src/credits.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/credits.c b/src/credits.c index c8a097e49..67ab97481 100644 --- a/src/credits.c +++ b/src/credits.c @@ -2254,12 +2254,12 @@ static void sub_8177050(struct Sprite *sprite) } } -static u8 sub_8177224(u16 species, s16 x, s16 y, u16 position) +static u8 sub_8177224(u16 nationalDexNum, s16 x, s16 y, u16 position) { u8 spriteId; u8 spriteId2; - spriteId = CreateMonSpriteFromNationalDexNumber(species, x, y, position); + spriteId = CreateMonSpriteFromNationalDexNumber(nationalDexNum, x, y, position); gSprites[spriteId].oam.priority = 1; gSprites[spriteId].data[1] = position + 1; gSprites[spriteId].invisible = TRUE; |