Skip to content

Commit

Permalink
Re-add main menu credits button in M&P
Browse files Browse the repository at this point in the history
For some reason, the credits button was always specifically removed from
M&P builds. After some discussion with Terry Cavanagh on the VVVVVV
Discord server, we agreed that there was no reason this should be
removed. So, it's getting put back in.
  • Loading branch information
InfoTeddy committed Aug 24, 2023
1 parent c44e8d0 commit 880c7ad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions desktop_version/src/Game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6274,9 +6274,7 @@ void Game::createmenu( enum Menu::MenuName t, bool samemenu/*= false*/ )
{
option(loc::gettext("translator"));
}
#if !defined(MAKEANDPLAY)
option(loc::gettext("credits"));
#endif
option(loc::gettext("quit"));
menuyoff = -10;
maxspacing = 15;
Expand Down
4 changes: 0 additions & 4 deletions desktop_version/src/Input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,9 +399,7 @@ static void menuactionpress(void)
{
OPTION_ID(3) /* translator */
}
#if !defined(MAKEANDPLAY)
OPTION_ID(4) /* credits */
#endif
OPTION_ID(5) /* quit */

#undef OPTION_ID
Expand Down Expand Up @@ -447,14 +445,12 @@ static void menuactionpress(void)
game.createmenu(Menu::translator_main);
map.nexttowercolour();
break;
#if !defined(MAKEANDPLAY)
case 4:
//Credits
music.playef(Sound_VIRIDIAN);
game.createmenu(Menu::credits);
map.nexttowercolour();
break;
#endif
case 5:
music.playef(Sound_VIRIDIAN);
game.createmenu(Menu::youwannaquit);
Expand Down

0 comments on commit 880c7ad

Please sign in to comment.