Skip to content

Commit

Permalink
tr2/option_passport: restore new game text for play any level
Browse files Browse the repository at this point in the history
Resolves #2563.
  • Loading branch information
lahm86 committed Mar 1, 2025
1 parent 3808fa7 commit 6044b08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/tr2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- fixed flare pickups only adding one flare to Lara's inventory rather than six (#2551, regression from 0.9)
- fixed play any level causing the game to hang when no gym level is present (#2560, regression from 0.9)
- fixed extremely large item quantities crashing the game (#2497, regression from 0.3)
- fixed missing new game text in the passport when play any level is enabled (#2563, regression from 0.9)

## [0.9.2](https://github.com/LostArtefacts/TRX/compare/tr2-0.9.1...tr2-0.9.2) - 2025-02-19
- fixed secret rewards not handed out after loading a save (#2528, regression from 0.8)
Expand Down
5 changes: 5 additions & 0 deletions src/tr2/game/option/option_passport.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,11 @@ static void M_ShowPage(const INVENTORY_ITEM *const inv_item)
&g_SaveGameRequester, GS(PASSPORT_SELECT_LEVEL), 0, nullptr, 0);
g_SaveGameRequester.ready = true;
}
if (m_SubtitleText == nullptr) {
m_SubtitleText = Text_Create(0, -16, GS(PASSPORT_NEW_GAME));
Text_AlignBottom(m_SubtitleText, true);
Text_CentreH(m_SubtitleText, true);
}
m_State.selection =
Requester_Display(&g_SaveGameRequester, true, true) - 1;
break;
Expand Down

0 comments on commit 6044b08

Please # to comment.