diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-31 13:42:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 13:42:52 -0400 |
commit | 69ce45f71f49c859ca7adc07902842503c07d405 (patch) | |
tree | 06f27893dcbc5a32d898325df733bf33d1aabae6 /src/egg_hatch.c | |
parent | d7ec1d234b260df869213e195055dd75bcbe5cf3 (diff) | |
parent | ed714f1d4910e6107f684a0f27566a0fe7c6ec6f (diff) |
Merge pull request #799 from GriffinRichards/rename-songs
Give songs meaningful english names
Diffstat (limited to 'src/egg_hatch.c')
-rw-r--r-- | src/egg_hatch.c | 10 |
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; |