summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2017-01-14 13:28:37 +0100
committerBardur Arantsson <bardur@scientician.net>2017-01-14 13:28:37 +0100
commit993ed44638fa17fe76c69f148daa6a1c14af4329 (patch)
tree9ce90988ab80440d9a6c3410b4a42aef61e8e578
parent145a0540715551140f17e4a193b605618c390f8f (diff)
main-win: Remove parameter from play_game()
-rw-r--r--src/main-win.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main-win.c b/src/main-win.c
index 0403dc46..54336a37 100644
--- a/src/main-win.c
+++ b/src/main-win.c
@@ -2063,7 +2063,7 @@ static void check_for_save_file(LPSTR cmd_line)
game_in_progress = TRUE;
/* Play game */
- play_game(FALSE);
+ play_game();
}
@@ -2096,7 +2096,7 @@ static void process_menus(WORD wCmd)
{
game_in_progress = TRUE;
Term_flush();
- play_game(TRUE);
+ play_game();
quit(NULL);
}
break;
@@ -2135,7 +2135,7 @@ ofn.lStructSize = sizeof(OPENFILENAME);
validate_file(savefile);
game_in_progress = TRUE;
Term_flush();
- play_game(FALSE);
+ play_game();
quit(NULL);
}
}
@@ -3323,7 +3323,7 @@ int FAR PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrevInst,
check_for_save_file(lpCmdLine);
game_in_progress = TRUE;
- play_game(FALSE);
+ play_game();
/* Prompt the user */
Term_fresh();