forked from mirror/OpenTTD
(svn r6380) -Codechange: unify all ways to quit OTTD.
This means that in the intro menu the 'Quit' button immediatelly quits and the 'Quit' in the menu of the normal game and scenario editor immediatelly quits when the 'autosave_on_exit' patch is turned on. This is the same way as the OS/window manager initiated quits, like alt-F4 and the 'x' in the (OS/window manager drawn) title bar of OTTD.
This commit is contained in:
13
openttd.c
13
openttd.c
@@ -537,6 +537,19 @@ int ttd_main(int argc, char *argv[])
|
||||
return 0;
|
||||
}
|
||||
|
||||
void HandleExitGameRequest(void)
|
||||
{
|
||||
if (_game_mode == GM_MENU) { // do not ask to quit on the main screen
|
||||
_exit_game = true;
|
||||
} else if (_patches.autosave_on_exit) {
|
||||
DoExitSave();
|
||||
_exit_game = true;
|
||||
} else {
|
||||
AskExitGame();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/** Mutex so that only one thread can communicate with the main program
|
||||
* at any given time */
|
||||
static ThreadMsg _message = MSG_OTTD_NO_MESSAGE;
|
||||
|
Reference in New Issue
Block a user