summaryrefslogtreecommitdiff
path: root/src/monster1.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
commit8e89f38f28fd5c7dff91732807a591eaefbc36c0 (patch)
tree7c6e22924f0d4d1643170c8cef476de89f8c4310 /src/monster1.cc
parente6d0a04ee4231400fe9cd4037bf89e2985a18bf3 (diff)
Remove re_head, re_name
Diffstat (limited to 'src/monster1.cc')
-rw-r--r--src/monster1.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monster1.cc b/src/monster1.cc
index f1968807..3f4a3adc 100644
--- a/src/monster1.cc
+++ b/src/monster1.cc
@@ -1536,11 +1536,11 @@ static void roff_name(int r_idx, int ego)
{
if (re_info[ego].before)
{
- Term_addstr( -1, TERM_WHITE, format("%s %s", re_name + re_info[ego].name, r_ptr->name));
+ Term_addstr( -1, TERM_WHITE, format("%s %s", re_info[ego].name, r_ptr->name));
}
else
{
- Term_addstr( -1, TERM_WHITE, format("%s %s", r_ptr->name, re_name + re_info[ego].name));
+ Term_addstr( -1, TERM_WHITE, format("%s %s", r_ptr->name, re_info[ego].name));
}
}
else