summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-27 20:42:04 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-27 20:42:04 +0200
commitbcbdb77ad85255f788b2fb37a13d100428f883b1 (patch)
treefd7c3eaf0143c2736e4287ac006693912e01a9c5
parent5cf2eebbe631c01f541a1d5ad9221b6942fe5715 (diff)
Remove DRS_SHOW_* preprocessor defines
-rw-r--r--src/config.h11
-rw-r--r--src/xtra1.c6
2 files changed, 0 insertions, 17 deletions
diff --git a/src/config.h b/src/config.h
index 99b6b9f0..889b3574 100644
--- a/src/config.h
+++ b/src/config.h
@@ -144,17 +144,6 @@
-/*
- * OPTION: Allow use of extended spell info -DRS-
- */
-#define DRS_SHOW_SPELL_INFO
-
-/*
- * OPTION: Allow use of the monster health bar -DRS-
- */
-#define DRS_SHOW_HEALTH_BAR
-
-
/*
* OPTION: Allow the use of "sound" in various places.
diff --git a/src/xtra1.c b/src/xtra1.c
index d4df67af..6e9b15fd 100644
--- a/src/xtra1.c
+++ b/src/xtra1.c
@@ -933,9 +933,6 @@ static void prt_stun(void)
*/
static void health_redraw(void)
{
-
-#ifdef DRS_SHOW_HEALTH_BAR
-
/* Not tracking */
if (!health_who)
{
@@ -1010,9 +1007,6 @@ static void health_redraw(void)
/* Dump the current "health" (use '*' symbols) */
Term_putstr(COL_INFO + 1, ROW_INFO, len, attr, "**********");
}
-
-#endif
-
}