(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

12
sdl.c
View File

@@ -434,6 +434,8 @@ static uint32 ConvertSdlKeyIntoMy(SDL_keysym *sym)
return (key << 16) + sym->unicode;
}
void DoExitSave();
static int PollEvent(void)
{
SDL_Event ev;
@@ -500,9 +502,13 @@ static int PollEvent(void)
case SDL_QUIT:
// do not ask to quit on the main screen
if (_game_mode != GM_MENU)
AskExitGame();
else
if (_game_mode != GM_MENU) {
if(_patches.autosave_on_exit) {
DoExitSave();
return ML_QUIT;
} else
AskExitGame();
} else
return ML_QUIT;
break;