summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/species.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-06-08 00:45:31 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-06-08 00:45:31 +0200
commite9f9e3f367416155e2cbe0c1dc96bb28903ad6ed (patch)
tree14bb59054a1806c2edc41f5aef5e52b919a6c680 /crawl-ref/source/species.h
parentbefb9a82fc5c795e5670921237535513e5525f39 (diff)
downloadcrawl-ref-e9f9e3f367416155e2cbe0c1dc96bb28903ad6ed.tar.gz
crawl-ref-e9f9e3f367416155e2cbe0c1dc96bb28903ad6ed.zip
Simplify species_name() now that draconian hacks are not needed.
Diffstat (limited to 'crawl-ref/source/species.h')
-rw-r--r--crawl-ref/source/species.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/species.h b/crawl-ref/source/species.h
index 488c572798..d4667c05d1 100644
--- a/crawl-ref/source/species.h
+++ b/crawl-ref/source/species.h
@@ -25,8 +25,7 @@ int get_species_index_by_abbrev(const char *abbrev);
int get_species_index_by_name(const char *name);
// from player.cc
-std::string species_name(species_type speci, int level, bool genus = false,
- bool adj = false);
+std::string species_name(species_type speci, bool genus = false, bool adj = false);
species_type str_to_species(const std::string &species);