summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-26 20:47:26 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-26 20:47:26 +0200
commit5241fee18e1a85b3b8e1492fa4d430e8af375035 (patch)
treeb7e9c94d9be9b496afbf9e06039a252e08f33df7 /src
parent07339db486c538b44b7c9488943dfb34c2ae24e4 (diff)
Remove "show_details" option
Diffstat (limited to 'src')
-rw-r--r--src/monster1.c9
-rw-r--r--src/tables.c3
-rw-r--r--src/variable.c2
3 files changed, 1 insertions, 13 deletions
diff --git a/src/monster1.c b/src/monster1.c
index 196272ce..68882d27 100644
--- a/src/monster1.c
+++ b/src/monster1.c
@@ -242,14 +242,8 @@ static void roff_aux(int r_idx, int ego, int remem)
}
- /* Require a flag to show kills */
- if (!(show_details))
- {
- /* nothing */
- }
-
/* Treat uniques differently */
- else if (flags1 & (RF1_UNIQUE))
+ if (flags1 & (RF1_UNIQUE))
{
/* Hack -- Determine if the unique is "dead" */
bool_ dead = (r_ptr->max_num == 0) ? TRUE : FALSE;
@@ -339,7 +333,6 @@ static void roff_aux(int r_idx, int ego, int remem)
/* Descriptions */
- if (show_details)
{
char buf[2048];
diff --git a/src/tables.c b/src/tables.c
index ac6f36d7..b1fc54e5 100644
--- a/src/tables.c
+++ b/src/tables.c
@@ -1394,9 +1394,6 @@ option_type option_info[] =
{ &show_store_graph, TRUE, 1, 15,
"show_store_graph", "Show graphics in stores" },
- { &show_details, TRUE, 1, 17,
- "show_details", "Show details in certain sub-windows" },
-
{ &ring_bell, FALSE, 1, 18,
"ring_bell", "Audible bell (on errors, etc)" },
/* Changed to default to FALSE -- it's so extremely annoying!!! -TY */
diff --git a/src/variable.c b/src/variable.c
index 174a2654..7c378a24 100644
--- a/src/variable.c
+++ b/src/variable.c
@@ -211,8 +211,6 @@ bool_ stack_force_notes; /* Merge inscriptions when stacking */
bool_ stack_force_costs; /* Merge discounts when stacking */
bool_ show_labels; /* Show labels in object listings */
-bool_ show_details; /* Show details in certain sub-windows */
-
bool_ ring_bell; /* Ring the bell (on errors, etc) */
bool_ show_inven_graph; /* Show graphics in inventory */