summaryrefslogtreecommitdiff
path: root/src/egg_hatch.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-08-29 01:47:36 -0400
committerGriffinR <griffin.g.richards@gmail.com>2020-08-29 01:47:36 -0400
commit038abf80ba30a277420e0381312c0cfc2296811e (patch)
treeab951530e74209c0da170bc74ddd8b5a456bab9a /src/egg_hatch.c
parentd7ec1d234b260df869213e195055dd75bcbe5cf3 (diff)
Give songs meaningful english names
Diffstat (limited to 'src/egg_hatch.c')
-rw-r--r--src/egg_hatch.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/egg_hatch.c b/src/egg_hatch.c
index 0c115ddfe..5071d1a75 100644
--- a/src/egg_hatch.c
+++ b/src/egg_hatch.c
@@ -595,7 +595,7 @@ static void SpriteCB_Egg_0(struct Sprite* sprite)
sprite->pos2.x = Sin(sprite->data[1], 1);
if (sprite->data[0] == 15)
{
- PlaySE(SE_BOWA);
+ PlaySE(SE_BALL);
StartSpriteAnim(sprite, 1);
CreateRandomEggShardSprite();
}
@@ -618,7 +618,7 @@ static void SpriteCB_Egg_1(struct Sprite* sprite)
sprite->pos2.x = Sin(sprite->data[1], 2);
if (sprite->data[0] == 15)
{
- PlaySE(SE_BOWA);
+ PlaySE(SE_BALL);
StartSpriteAnim(sprite, 2);
}
}
@@ -645,13 +645,13 @@ static void SpriteCB_Egg_2(struct Sprite* sprite)
sprite->pos2.x = Sin(sprite->data[1], 2);
if (sprite->data[0] == 15)
{
- PlaySE(SE_BOWA);
+ PlaySE(SE_BALL);
StartSpriteAnim(sprite, 2);
CreateRandomEggShardSprite();
CreateRandomEggShardSprite();
}
if (sprite->data[0] == 30)
- PlaySE(SE_BOWA);
+ PlaySE(SE_BALL);
}
}
}
@@ -678,7 +678,7 @@ static void SpriteCB_Egg_4(struct Sprite* sprite)
sprite->data[0]++;
if (!gPaletteFade.active)
{
- PlaySE(SE_TAMAGO);
+ PlaySE(SE_EGG_HATCH);
sprite->invisible = 1;
sprite->callback = SpriteCB_Egg_5;
sprite->data[0] = 0;