summaryrefslogtreecommitdiff
path: root/src/melee2.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-26 09:14:06 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-26 09:17:57 +0200
commit30ba18d4fd9901f7d7fdbde83b41de5e0ef7e8c1 (patch)
tree8087c872864a2344deb1c1f44df673693db88bdc /src/melee2.c
parentae6bee5100bb9ec4e7a3d5fa8538ca3eae38dc58 (diff)
messages: Remove message__type; it's not really used.
Diffstat (limited to 'src/melee2.c')
-rw-r--r--src/melee2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/melee2.c b/src/melee2.c
index 96f34bcb..2880c99c 100644
--- a/src/melee2.c
+++ b/src/melee2.c
@@ -958,7 +958,7 @@ void monster_msg(cptr fmt, ...)
msg_print(buf);
else
{
- message_add(MESSAGE_MSG, buf, TERM_WHITE);
+ message_add(buf, TERM_WHITE);
p_ptr->window |= PW_MESSAGE;
}
}
@@ -983,7 +983,7 @@ void cmonster_msg(char a, cptr fmt, ...)
cmsg_print(a, buf);
else
{
- message_add(MESSAGE_MSG, buf, a);
+ message_add(buf, a);
p_ptr->window |= PW_MESSAGE;
}
}