summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/message.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-28 23:47:56 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-29 01:07:35 +0100
commitc433d949e7be797fb8662d2efa3ec73c12c6469a (patch)
tree182703d56800936fe36d9904f22407f7e4cbad9e /crawl-ref/source/message.cc
parentdcc0ed19d09e205c10bddb627c27520477f126f0 (diff)
downloadcrawl-ref-c433d949e7be797fb8662d2efa3ec73c12c6469a.tar.gz
crawl-ref-c433d949e7be797fb8662d2efa3ec73c12c6469a.zip
Remove mpr_nocap().
No particular reason, other than consistency. And all but two used wasteful double-conversion, so this is not a speed regression.
Diffstat (limited to 'crawl-ref/source/message.cc')
-rw-r--r--crawl-ref/source/message.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/message.cc b/crawl-ref/source/message.cc
index 43e4cd8902..48997ab811 100644
--- a/crawl-ref/source/message.cc
+++ b/crawl-ref/source/message.cc
@@ -54,11 +54,6 @@ void mpr_nojoin(msg_channel_type channel, string text)
_mpr(text, channel, 0, true);
}
-void mpr_nocap(string text, msg_channel_type channel, int param, bool nojoin)
-{
- _mpr(text, channel, param, nojoin, false);
-}
-
static bool _ends_in_punctuation(const string& text)
{
switch (text[text.size() - 1])