1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

Get autosave day without leading 0, delete ancient saveprefix stuff

This commit is contained in:
Dydzio 2023-07-13 21:55:51 +02:00
parent bcb061b58f
commit 404ab23bc6
2 changed files with 1 additions and 5 deletions

View File

@ -137,7 +137,6 @@ int main(int argc, char * argv[])
("nointro,i", "skips intro movies")
("donotstartserver,d","do not attempt to start server and just connect to it instead server")
("serverport", po::value<si64>(), "override port specified in config file")
("saveprefix", po::value<std::string>(), "prefix for auto save files")
("savefrequency", po::value<si64>(), "limit auto save creation to each N days")
("lobby", "parameters address, port, uuid to connect ro remote lobby session")
("lobby-address", po::value<std::string>(), "address to remote lobby")
@ -256,7 +255,6 @@ int main(int argc, char * argv[])
// Init special testing settings
setSettingInteger("session/serverport", "serverport", 0);
setSettingString("session/saveprefix", "saveprefix", "");
setSettingInteger("general/saveFrequency", "savefrequency", 1);
// Initialize logging based on settings

View File

@ -218,9 +218,7 @@ void CPlayerInterface::performAutosave()
}
else
{
std::string stringifiedDate = (cb->getDate(Date::MONTH) < 10
? std::string("0") + std::to_string(cb->getDate(Date::MONTH))
: std::to_string(cb->getDate(Date::MONTH)))
std::string stringifiedDate = std::to_string(cb->getDate(Date::MONTH))
+ std::to_string(cb->getDate(Date::WEEK))
+ std::to_string(cb->getDate(Date::DAY_OF_WEEK));