From daf63255a64ebc312799a9992f32f06f3be9b174 Mon Sep 17 00:00:00 2001 From: Jaizu Date: Sat, 27 Dec 2025 15:06:33 +0100 Subject: [PATCH] Fix some typos --- src/overworld.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/overworld.c b/src/overworld.c index d1d3ddcd37..87a833ac74 100644 --- a/src/overworld.c +++ b/src/overworld.c @@ -1040,7 +1040,7 @@ static bool16 ShouldLegendaryMusicPlayAtLocation(struct WarpData *warp) return FALSE; } -static bool16 NoMusicInSotopolisWithLegendaries(struct WarpData *warp) +static bool16 NoMusicInSootopolisWithLegendaries(struct WarpData *warp) { if (VarGet(VAR_SKY_PILLAR_STATE) != 1) return FALSE; @@ -1065,7 +1065,7 @@ static bool16 IsInfiltratedWeatherInstitute(struct WarpData *warp) return FALSE; } -static bool16 IsInflitratedSpaceCenter(struct WarpData *warp) +static bool16 IsInfiltratedSpaceCenter(struct WarpData *warp) { if (VarGet(VAR_MOSSDEEP_CITY_STATE) == 0) return FALSE; @@ -1081,11 +1081,11 @@ static bool16 IsInflitratedSpaceCenter(struct WarpData *warp) u16 GetLocationMusic(struct WarpData *warp) { - if (NoMusicInSotopolisWithLegendaries(warp) == TRUE) + if (NoMusicInSootopolisWithLegendaries(warp) == TRUE) return MUS_NONE; else if (ShouldLegendaryMusicPlayAtLocation(warp) == TRUE) return MUS_ABNORMAL_WEATHER; - else if (IsInflitratedSpaceCenter(warp) == TRUE) + else if (IsInfiltratedSpaceCenter(warp) == TRUE) return MUS_ENCOUNTER_MAGMA; else if (IsInfiltratedWeatherInstitute(warp) == TRUE) return MUS_MT_CHIMNEY;