summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-07 09:47:27 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-07 09:47:27 +0000
commit39499a899f021a4f43cad61b1e4a7920b7d52d85 (patch)
tree7056ecc57cdffe8bbe2b0c0675d79ee0d5c8f00d /crawl-ref/source/direct.cc
parentd4bb9564654ccce58057dfa182bbb4bc1811db7b (diff)
parent19a176d9f092f4f271652b348cafa0e7ebc578d2 (diff)
downloadcrawl-ref-d9883c0aa7b5fdbf5e941657268c0d84efa7da16.tar.gz
crawl-ref-d9883c0aa7b5fdbf5e941657268c0d84efa7da16.zip
Re-tagging 0.2.3, hopefully for the last time.0.2.3
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/tags/stone_soup-0.2.3@1254 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/direct.cc')
-rw-r--r--crawl-ref/source/direct.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index b260f14dc7..1f745b1a78 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -1554,8 +1554,7 @@ static void describe_cell(int mx, int my)
#endif
if (env.cgrid[mx][my] != EMPTY_CLOUD)
{
- const char cloud_inspected = env.cgrid[mx][my];
-
+ const int cloud_inspected = env.cgrid[mx][my];
const cloud_type ctype = (cloud_type) env.cloud[cloud_inspected].type;
mprf("There is a cloud of %s here.", cloud_name(ctype).c_str());