summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-23 17:44:30 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-23 17:44:30 +0000
commit179a048026b0dfea4fd95a2b71673e6a0694481c (patch)
tree30b6199859afa2e5e18c0084be8db7afb3437099 /crawl-ref/source/mutation.h
parentaef49cb2fba2d6707c1d2d591ffbe3f35cd6e939 (diff)
downloadcrawl-ref-179a048026b0dfea4fd95a2b71673e6a0694481c.tar.gz
crawl-ref-179a048026b0dfea4fd95a2b71673e6a0694481c.zip
Fixed 1594106: innate abilities were not being dumped.
Note that this will cause a bug if you have more than 23 mutations simultaneously; fixing that will require patching formatted_string. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@485 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mutation.h')
-rw-r--r--crawl-ref/source/mutation.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/mutation.h b/crawl-ref/source/mutation.h
index 76d821f2c4..6f9e3b7bd7 100644
--- a/crawl-ref/source/mutation.h
+++ b/crawl-ref/source/mutation.h
@@ -14,6 +14,8 @@
#ifndef MUTATION_H
#define MUTATION_H
+// for formatted_string
+#include "menu.h"
// last updated 12may2000 {dlb}
/* ***********************************************************************
@@ -27,7 +29,9 @@ bool mutate(int which_mutation, bool failMsg = true);
/* ***********************************************************************
* called from: acr
* *********************************************************************** */
-void display_mutations(void);
+void display_mutations();
+
+formatted_string describe_mutations();
// last updated 12may2000 {dlb}