summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.h
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-01 07:14:50 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-01 07:14:50 +0000
commitf090b4c11c5dbfe108933d6a6507cd9c3e697f4e (patch)
tree3aa86f4285605b8a95da265f778a5c7c7004b134 /crawl-ref/source/describe.h
parent3ba8bc84d018da1452880ac897a433ca7752ebb5 (diff)
downloadcrawl-ref-f090b4c11c5dbfe108933d6a6507cd9c3e697f4e.tar.gz
crawl-ref-f090b4c11c5dbfe108933d6a6507cd9c3e697f4e.zip
Bug 2006559: don't include quotes about in a monster's description if it
won't fit on the screen. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6282 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.h')
-rw-r--r--crawl-ref/source/describe.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.h b/crawl-ref/source/describe.h
index 009b6077eb..92a4fdfb04 100644
--- a/crawl-ref/source/describe.h
+++ b/crawl-ref/source/describe.h
@@ -85,7 +85,10 @@ std::string get_skill_description(int skill, bool need_title = false);
void describe_skill(int skill);
-void print_description( const std::string &d );
+void print_description(const std::string &d, const std::string title = "",
+ const std::string suffix = "",
+ const std::string prefix = "",
+ const std::string footer = "");
const char *trap_name(trap_type trap);
int str_to_trap(const std::string &s);