summaryrefslogtreecommitdiff
path: root/src/bldg.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-02-23 09:11:58 +0100
committerBardur Arantsson <bardur@scientician.net>2015-02-23 09:11:58 +0100
commitdaede88ba01cc86d982ff2f2f40fdf517cb90ab0 (patch)
tree4e533726584983c8b7a652a698783aa7f5dad734 /src/bldg.cc
parentc54c7ab7a45e1729bcd3a238cd296850ba91c55f (diff)
Remove ba_head, ba_name
Diffstat (limited to 'src/bldg.cc')
-rw-r--r--src/bldg.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bldg.cc b/src/bldg.cc
index f77efa4c..ac9ab5e6 100644
--- a/src/bldg.cc
+++ b/src/bldg.cc
@@ -178,7 +178,7 @@ void show_building(store_type *s_ptr)
strnfmt(tmp_str, 80, " %c", ba_ptr->letter);
c_put_str(TERM_YELLOW, tmp_str, 21 + (i / 2), 17 + (30 * (i % 2)));
- strnfmt(tmp_str, 80, ") %s %s", ba_ptr->name + ba_name, buff);
+ strnfmt(tmp_str, 80, ") %s %s", ba_ptr->name, buff);
c_put_str(action_color, tmp_str, 21 + (i / 2), 2 + 17 + (30 * (i % 2)));
}
}