diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-13 15:54:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-13 15:54:40 -0500 |
commit | b14fe9dce369b1a78c5f4f653b4c7e2e2d67d98d (patch) | |
tree | ff1f6209a92bc3a92c102bb4a18ca8a7fa907af7 /src/intro.c | |
parent | ef935f6f4a59a2b37c4ff870ade96853621210ae (diff) | |
parent | 57be596ce43bed86594412d598d3058c4a3d1d2d (diff) |
Merge pull request #1547 from GriffinRichards/doc-sounddata
Clean up sound, add CRY_MODE constants
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 5cf99c97e..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, 0); + 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; |