This is a distro-specific patch file for "smc" (late 2011 "git" ver- sions). It disables a prompt that isn't needed under the local distro. Under other distros, this change should be omitted. --- smc.old/smc/src/gui/menu_data.cpp +++ smc/smc/src/gui/menu_data.cpp @@ -673,11 +673,12 @@ void cMenu_Start :: Load_Campaign( std::string name ) { +#ifdef NOTDEF if( pLevel_Player->m_points > 0 && !Box_Question( _("This will reset your current progress.\nContinue ?") ) ) { return; } - +#endif cCampaign *new_campaign = pCampaign_Manager->Get_from_Name( name ); // if not available @@ -713,11 +714,12 @@ void cMenu_Start :: Load_World( std::string name ) { +#ifdef NOTDEF if( pLevel_Player->m_points > 0 && !Box_Question( _("This will reset your current progress.\nContinue ?") ) ) { return; } - +#endif cOverworld *new_world = pOverworld_Manager->Get_from_Name( name ); // if not available @@ -742,11 +744,12 @@ bool cMenu_Start :: Load_Level( std::string level_name ) { +#ifdef NOTDEF if( pLevel_Player->m_points > 0 && !Box_Question( _("This will reset your current progress.\nContinue ?") ) ) { return 0; } - +#endif // if not available if( !pLevel_Manager->Get_Path( level_name ) ) {