(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 2b13b2d239
commit 77e882c3bd
5 changed files with 30 additions and 4 deletions

12
win32.c
View File

@@ -181,6 +181,8 @@ static void ClientSizeChanged(int w, int h)
}
}
void DoExitSave();
static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg) {
@@ -224,7 +226,15 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP
}
case WM_CLOSE:
AskExitGame();
// do not ask to quit on the main screen
if (_game_mode != GM_MENU) {
if(_patches.autosave_on_exit) {
DoExitSave();
_exit_game = true;
} else
AskExitGame();
} else
return ML_QUIT;
return 0;
case WM_LBUTTONDOWN: