diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-20 18:02:00 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-20 19:06:14 -0400 |
commit | 30142411799650c17367ce4652269e8ecca7ceef (patch) | |
tree | 69a4b6b971c0df861bf549c64029317e1146ab99 /src/rotating_gate.c | |
parent | 6c34effda93c67a37895e79b684b31b3cb9a2a88 (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/rotating_gate.c')
-rw-r--r-- | src/rotating_gate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rotating_gate.c b/src/rotating_gate.c index 340fc58dd..162eb3e6d 100644 --- a/src/rotating_gate.c +++ b/src/rotating_gate.c @@ -776,7 +776,7 @@ static void SpriteCallback_RotatingGate(struct Sprite *sprite) if (GetPlayerSpeed() != 1) affineAnimation += 8; - PlaySE(SE_HI_TURUN); + PlaySE(SE_ROTATING_GATE); StartSpriteAffineAnim(sprite, affineAnimation); } else if (rotationDirection == ROTATE_CLOCKWISE) @@ -786,7 +786,7 @@ static void SpriteCallback_RotatingGate(struct Sprite *sprite) if (GetPlayerSpeed() != 1) affineAnimation += 8; - PlaySE(SE_HI_TURUN); + PlaySE(SE_ROTATING_GATE); StartSpriteAffineAnim(sprite, affineAnimation); } |