diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-01-05 00:16:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 00:16:24 -0500 |
commit | c506cf747fa2e0a0eaff428cfd28ada7ffa58b67 (patch) | |
tree | dc753eca441c2672183a23235af63cd49443c5dc /src | |
parent | a291bc4a2c98736c7b511b911673192fe0083650 (diff) | |
parent | fe5269b875a335d1ce257e0e312061f24a3b24b2 (diff) |
Merge pull request #1293 from GriffinRichards/typo-pyramind
Fix sPyramindFloorNames typo
Diffstat (limited to 'src')
-rw-r--r-- | src/start_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/start_menu.c b/src/start_menu.c index 35eb53475..bfced1858 100644 --- a/src/start_menu.c +++ b/src/start_menu.c @@ -138,7 +138,7 @@ static bool8 FieldCB_ReturnToFieldStartMenu(void); static const struct WindowTemplate sSafariBallsWindowTemplate = {0, 1, 1, 9, 4, 0xF, 8}; -static const u8* const sPyramindFloorNames[] = +static const u8* const sPyramidFloorNames[] = { gText_Floor1, gText_Floor2, @@ -383,7 +383,7 @@ static void ShowPyramidFloorWindow(void) PutWindowTilemap(sBattlePyramidFloorWindowId); DrawStdWindowFrame(sBattlePyramidFloorWindowId, FALSE); - StringCopy(gStringVar1, sPyramindFloorNames[gSaveBlock2Ptr->frontier.curChallengeBattleNum]); + StringCopy(gStringVar1, sPyramidFloorNames[gSaveBlock2Ptr->frontier.curChallengeBattleNum]); StringExpandPlaceholders(gStringVar4, gText_BattlePyramidFloor); AddTextPrinterParameterized(sBattlePyramidFloorWindowId, 1, gStringVar4, 0, 1, 0xFF, NULL); CopyWindowToVram(sBattlePyramidFloorWindowId, 2); |