summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-25 23:03:59 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-25 23:03:59 +0000
commit197a47d1f4bc53169a0f3710559bf797546b1e1d (patch)
tree3f44c83636a8d0ef468bba5f2732a9b21f12fbd7 /crawl-ref/source/describe.h
parent25c452a14945c7783ddef7fba7ae3889096e4d27 (diff)
downloadcrawl-ref-197a47d1f4bc53169a0f3710559bf797546b1e1d.tar.gz
crawl-ref-197a47d1f4bc53169a0f3710559bf797546b1e1d.zip
Implemented feature request 1565211 - display launcher stats with 'v'.
Also cleaned up a typo somewhere and that verbose was getting type char for no obvious reason. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@123 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.h')
-rw-r--r--crawl-ref/source/describe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/describe.h b/crawl-ref/source/describe.h
index 01a9657618..9552958ea5 100644
--- a/crawl-ref/source/describe.h
+++ b/crawl-ref/source/describe.h
@@ -21,13 +21,13 @@
/* ***********************************************************************
* called from: chardump - spells4
* *********************************************************************** */
-bool is_dumpable_artifact( const item_def &item, char verbose );
+bool is_dumpable_artifact( const item_def &item, bool verbose );
// last updated 12may2000 {dlb}
/* ***********************************************************************
* called from: chardump - describe
* *********************************************************************** */
-std::string get_item_description( const item_def &item, char verbose,
+std::string get_item_description( const item_def &item, bool verbose,
bool dump = false );
// last updated 12may2000 {dlb}