summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-26 20:07:56 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-26 20:07:56 +0200
commit2b9664ae8b76dadaace0bd55f6d7b6dbe1367255 (patch)
treeca890eb0b8af374646293abd96593d1ae80c2bbd
parent06b20f4b9d18f0a8730707d63f9714719157a9a3 (diff)
Remove SCORE_{BORGS,WIZARDS,CHEATERS} preprocessor defines
-rw-r--r--src/config.h15
-rw-r--r--src/files.c6
2 files changed, 0 insertions, 21 deletions
diff --git a/src/config.h b/src/config.h
index 20463a62..99b6b9f0 100644
--- a/src/config.h
+++ b/src/config.h
@@ -135,21 +135,6 @@
#define HANDLE_SIGNALS
-/*
- * Allow "Wizards" to yield "high scores"
- */
-/* #define SCORE_WIZARDS */
-
-/*
- * Allow "Borgs" to yield "high scores"
- */
-/*#define SCORE_BORGS*/
-
-/*
- * Allow "Cheaters" to yield "high scores"
- */
-/* #define SCORE_CHEATERS */
-
/*
diff --git a/src/files.c b/src/files.c
index 4e2ff70a..cd3a5bf4 100644
--- a/src/files.c
+++ b/src/files.c
@@ -5306,7 +5306,6 @@ static errr top_twenty(void)
/* Clear screen */
Term_clear();
-#ifndef SCORE_WIZARDS
/* Wizard-mode pre-empts scoring */
if (noscore & 0x000F)
{
@@ -5315,9 +5314,7 @@ static errr top_twenty(void)
display_scores_aux(highscore_fd, 0, 10, -1, NULL);
goto out;
}
-#endif
-#ifndef SCORE_BORGS
/* Borg-mode pre-empts scoring */
if (noscore & 0x00F0)
{
@@ -5326,9 +5323,7 @@ static errr top_twenty(void)
display_scores_aux(highscore_fd, 0, 10, -1, NULL);
goto out;
}
-#endif
-#ifndef SCORE_CHEATERS
/* Cheaters are not scored */
if (noscore & 0xFF00)
{
@@ -5337,7 +5332,6 @@ static errr top_twenty(void)
display_scores_aux(highscore_fd, 0, 10, -1, NULL);
goto out;
}
-#endif
/* Interupted */
if (!total_winner && streq(died_from, "Interrupting"))