(svn r1076) Feature: Patch setting to autosave the game on exit

If you set autosave_on_exit = true in openttd.cfg, your game will be saved as exit.sav in the autosave folder and you won't be asked if you want to quit the game any more.
This commit is contained in:
dominik
2004-12-13 22:10:12 +00:00
parent 5a2c5fed09
commit 0a1e697a29
5 changed files with 30 additions and 4 deletions

View File

@@ -1146,6 +1146,14 @@ bool EmergencySave()
return true;
}
void DoExitSave()
{
char buf[200];
sprintf(buf, "%s%sexit.sav", _path.autosave_dir, PATHSEP);
debug(buf);
SaveOrLoad(buf, SL_SAVE);
}
// not used right now, but could be used if extensions of savegames are garbled
/*int GetSavegameType(char *file)
{