diff --git a/main.cpp b/main.cpp index 38eb85d..d8ac607 100644 --- a/main.cpp +++ b/main.cpp @@ -21,7 +21,7 @@ # endif #endif -#define VERSION_NUMBER "2.3" +#define VERSION_NUMBER "2.4" #ifndef VERSION_STRING # define VERSION_STRING "LGOGDownloader " VERSION_NUMBER @@ -81,7 +81,7 @@ int main(int argc, char *argv[]) ("list", bpo::value<bool>(&config.bList)->zero_tokens()->default_value(false), "List games") ("list-details", bpo::value<bool>(&config.bListDetails)->zero_tokens()->default_value(false), "List games with detailed info") ("download", bpo::value<bool>(&config.bDownload)->zero_tokens()->default_value(false), "Download") - ("repair", bpo::value<bool>(&config.bRepair)->zero_tokens()->default_value(false), "Repair downloaded files\nUse --repair --download to redownload files when filesizes don't match (possibly different version). This will delete the old file") + ("repair", bpo::value<bool>(&config.bRepair)->zero_tokens()->default_value(false), "Repair downloaded files\nUse --repair --download to redownload files when filesizes don't match (possibly different version). Redownload will delete the old file") ("game", bpo::value<std::string>(&config.sGameRegex)->default_value(""), "Set regular expression filter\nfor download/list/repair (Perl syntax)\nAliases: \"all\", \"free\"") ("directory", bpo::value<std::string>(&config.sDirectory)->default_value(""), "Set download directory") #ifndef ENVIRONMENT32