summaryrefslogtreecommitdiff
path: root/src/dungeon.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-02-05 19:22:46 +0100
committerBardur Arantsson <bardur@scientician.net>2016-02-05 19:22:46 +0100
commit372e4083c524f176a790655870464c650f4213aa (patch)
tree4b1dc0cd62206e93aa61dbb23e7b75f3e7791bbb /src/dungeon.cc
parent814b55d60ed50ae3fe6b5ca00129e76f3988b696 (diff)
Remove '-n' command line switch
Diffstat (limited to 'src/dungeon.cc')
-rw-r--r--src/dungeon.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/dungeon.cc b/src/dungeon.cc
index 3ec79068..bff82d12 100644
--- a/src/dungeon.cc
+++ b/src/dungeon.cc
@@ -5092,12 +5092,8 @@ static void load_all_pref_files(void)
/*
* Actually play a game
- *
- * If the "new_game" parameter is true, then, after loading the
- * savefile, we will commit suicide, if necessary, to allow the
- * player to start a new game.
*/
-void play_game(bool_ new_game)
+void play_game()
{
int i, tmp_dun;
@@ -5129,7 +5125,8 @@ void play_game(bool_ new_game)
(void)Term_set_cursor(0);
/* Character list */
- if (!new_game && !no_begin_screen) new_game = begin_screen();
+ bool_ new_game = FALSE;
+ if (!no_begin_screen) new_game = begin_screen();
no_begin_screen = FALSE;
/* Attempt to load */