summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-06-07 05:05:25 +0200
committerBardur Arantsson <bardur@scientician.net>2014-11-20 01:47:32 +0100
commit4d2f69c425f64e3dfcbe613a85d3b32d90f6136d (patch)
tree53ffa84f5ad9c3a7223ab360410c8572dbe730ed /src
parent20f4605c326e2af238b9c2c214914ba07d5bde55 (diff)
Remove -s/-S command-line option
Diffstat (limited to 'src')
-rw-r--r--src/main.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main.c b/src/main.c
index a4a93026..66cb3983 100644
--- a/src/main.c
+++ b/src/main.c
@@ -121,8 +121,6 @@ int main(int argc, char *argv[])
bool_ new_game = FALSE;
- int show_score = 0;
-
cptr mstr = NULL;
bool_ args = TRUE;
@@ -196,14 +194,6 @@ int main(int argc, char *argv[])
break;
}
- case 'S':
- case 's':
- {
- show_score = atoi(&argv[i][2]);
- if (show_score <= 0) show_score = 10;
- break;
- }
-
case 'u':
case 'U':
{
@@ -283,7 +273,6 @@ usage:
puts(" -o Request original keyset");
puts(" -r Request rogue-like keyset");
puts(" -H <list of files> Convert helpfile to html");
- puts(" -s<num> Show <num> high scores");
puts(" -u<who> Use your <who> savefile");
puts(" -M<which> Use the <which> module");
puts(" -m<sys> Force 'main-<sys>.c' usage");
@@ -421,9 +410,6 @@ usage:
/* Initialize */
init_angband();
- /* Hack -- If requested, display scores and quit */
- if (show_score > 0) display_scores(0, show_score);
-
/* Wait for response */
pause_line(23);