diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-31 13:42:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 13:42:41 -0400 |
commit | 4cf09577950db22d7f0acf6ede45b8dca1c97156 (patch) | |
tree | cb094078122b217fc67e2285614b79c6e83eaf88 /src/minigame_countdown.c | |
parent | c5839905a1259fd7e843c0ffa1ce2470d40b76ae (diff) | |
parent | bb56d4a3f4cab33f899646e0630282fc6176a9c9 (diff) |
Merge pull request #356 from GriffinRichards/rename-songs
Give songs meaningful english names
Diffstat (limited to 'src/minigame_countdown.c')
-rw-r--r-- | src/minigame_countdown.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/minigame_countdown.c b/src/minigame_countdown.c index 874fb2377..bc8023599 100644 --- a/src/minigame_countdown.c +++ b/src/minigame_countdown.c @@ -86,7 +86,7 @@ static bool32 RunMinigameCountdownDigitsAnim(u8 spriteId) // fallthrough case 1: if (sprite->data[2] == 0) - PlaySE(SE_KON2); + PlaySE(SE_BALL_BOUNCE_2); if (++sprite->data[2] >= 20) { sprite->data[2] = 0; @@ -178,7 +178,7 @@ static void SpriteCB_Start(struct Sprite * sprite) sprite->pos2.y = data[5] >> 4; if (sprite->pos2.y >= 0) { - PlaySE(SE_KON2); + PlaySE(SE_BALL_BOUNCE_2); sprite->pos2.y = 0; data[0]++; } @@ -187,7 +187,7 @@ static void SpriteCB_Start(struct Sprite * sprite) data[1] += 12; if (data[1] >= 128) { - PlaySE(SE_KON2); + PlaySE(SE_BALL_BOUNCE_2); data[1] = 0; data[0]++; } @@ -198,7 +198,7 @@ static void SpriteCB_Start(struct Sprite * sprite) data[1] += 16; if (data[1] >= 128) { - PlaySE(SE_KON2); + PlaySE(SE_BALL_BOUNCE_2); data[1] = 0; data[0]++; } |