diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 03:11:03 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 03:11:03 -0400 |
commit | bb56d4a3f4cab33f899646e0630282fc6176a9c9 (patch) | |
tree | cb094078122b217fc67e2285614b79c6e83eaf88 /src/field_effect_helpers.c | |
parent | c5839905a1259fd7e843c0ffa1ce2470d40b76ae (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/field_effect_helpers.c')
-rw-r--r-- | src/field_effect_helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/field_effect_helpers.c b/src/field_effect_helpers.c index d259775ef..55095086c 100644 --- a/src/field_effect_helpers.c +++ b/src/field_effect_helpers.c @@ -622,7 +622,7 @@ u32 FldEff_Splash(void) sprite->data[1] = gFieldEffectArguments[1]; sprite->data[2] = gFieldEffectArguments[2]; sprite->pos2.y = (graphicsInfo->height >> 1) - 4; - PlaySE(SE_MIZU); + PlaySE(SE_PUDDLE); } return 0; } @@ -732,7 +732,7 @@ static void UpdateFeetInFlowingWaterFieldEffect(struct Sprite * sprite) sprite->data[4] = objectEvent->currentCoords.y; if (!sprite->invisible) { - PlaySE(SE_MIZU); + PlaySE(SE_PUDDLE); } } } |