--- TSC-git-92d74ff7f/tsc/src/gui/menu_data.cpp~ +++ TSC-git-92d74ff7f/tsc/src/gui/menu_data.cpp @@ -806,10 +806,11 @@ void cMenu_Start::Load_Campaign(std::string name) { +#ifdef NOTDEF if (gp_hud->Get_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 @@ -848,10 +849,11 @@ void cMenu_Start::Load_World(std::string name) { +#ifdef NOTDEF if (gp_hud->Get_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 @@ -874,10 +876,11 @@ bool cMenu_Start::Load_Level(std::string level_name) { +#ifdef NOTDEF if (gp_hud->Get_Points() > 0 && !Box_Question(_("This will reset your current progress.\nContinue ?"))) { return 0; } - +#endif // if not available boost::filesystem::path level_path = pLevel_Manager->Get_Path(level_name); if (level_path.empty()) {