In 3.5.0, in main_win.c:
Code:
static void check_for_save_file(LPSTR cmd_line) { [...] /* Set the command now so that we skip the "Open File" prompt. */ cmd.command = CMD_LOADFILE; }
Code:
static void check_for_save_file(LPSTR cmd_line) { [...] /* Start game */ game_in_progress = TRUE; Term_fresh(); play_game(FALSE); quit(NULL); }
Code:
/* Did the user double click on a save file? */ check_for_save_file(lpCmdLine); /* Set command hook */ cmd_get_hook = textui_get_cmd; /* Set up the display handlers and things. */ init_display(); init_angband(); textui_init(); initialized = TRUE;
Leave a comment: