diff --git a/desktop_version/src/Game.cpp b/desktop_version/src/Game.cpp index aba868c9..26fea0cb 100644 --- a/desktop_version/src/Game.cpp +++ b/desktop_version/src/Game.cpp @@ -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; diff --git a/desktop_version/src/Input.cpp b/desktop_version/src/Input.cpp index 86bd6b5f..9831d5a1 100644 --- a/desktop_version/src/Input.cpp +++ b/desktop_version/src/Input.cpp @@ -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 @@ -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);