diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-07 13:54:44 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-11-07 14:26:09 -0500 |
commit | c4169cfd290dcf7703b79debd66142b277af5613 (patch) | |
tree | 4142cd4e843d863532a2dfe81f82877b26d9cbb0 /src/intro.c | |
parent | 54b254a829d973345b0d282b7a4ffd7458a5c7da (diff) |
Disambiguate cry functions
Diffstat (limited to 'src/intro.c')
-rw-r--r-- | src/intro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intro.c b/src/intro.c index 00cb42ac2..3e805dca4 100644 --- a/src/intro.c +++ b/src/intro.c @@ -1925,7 +1925,7 @@ static void Task_Scene3_Groudon(u8 taskId) tScreenX = 80; tScreenY = 41; tDelay = 16; - PlayCryInternal(SPECIES_GROUDON, 0, 100, 10, CRY_MODE_NORMAL); + PlayCryInternal(SPECIES_GROUDON, 0, 100, CRY_PRIORITY_NORMAL, CRY_MODE_NORMAL); tState++; } break; @@ -2127,7 +2127,7 @@ static void Task_Scene3_Kyogre(u8 taskId) { tDelay = 1; tState++; - PlayCryInternal(SPECIES_KYOGRE, 0, 120, 10, 0); + PlayCryInternal(SPECIES_KYOGRE, 0, 120, CRY_PRIORITY_NORMAL, CRY_MODE_NORMAL); } } break; |