diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-07 12:58:11 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-11-07 13:33:05 -0500 |
commit | 54b254a829d973345b0d282b7a4ffd7458a5c7da (patch) | |
tree | db16c5d0a7b31889ecbc49e28c1e8c79c41f9606 /src/pokemon_summary_screen.c | |
parent | 4f825a6ee012c925b3da100b67d363676a03029d (diff) |
Add CRY_MODE constants
Diffstat (limited to 'src/pokemon_summary_screen.c')
-rw-r--r-- | src/pokemon_summary_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index 5a4858620..ca31a0045 100644 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -3929,9 +3929,9 @@ static void PlayMonCry(void) if (!summary->isEgg) { if (ShouldPlayNormalMonCry(&sMonSummaryScreen->currentMon) == TRUE) - PlayCry3(summary->species2, 0, 0); + PlayCry3(summary->species2, 0, CRY_MODE_NORMAL); else - PlayCry3(summary->species2, 0, 11); + PlayCry3(summary->species2, 0, CRY_MODE_WEAK); } } |