summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-08 22:28:21 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-08 22:28:21 +0000
commit979227dfb5b6f9d6574abe88b6e446ea948f95fa (patch)
tree4b4125ddf79edbd718bace07d26b216511f7dcbc /crawl-ref/source/stuff.cc
parent80cf465fff32ada6065a884416bdab00df99db0c (diff)
downloadcrawl-ref-979227dfb5b6f9d6574abe88b6e446ea948f95fa.tar.gz
crawl-ref-979227dfb5b6f9d6574abe88b6e446ea948f95fa.zip
Add miscellaneous minor fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7789 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index dca0e8ab4d..2bd2a6da09 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -448,7 +448,7 @@ void tag_followers()
void untag_followers()
{
- for (int m = 0; m < MAX_MONSTERS; m++)
+ for (int m = 0; m < MAX_MONSTERS; ++m)
menv[m].flags &= (~MF_TAKING_STAIRS);
}
@@ -460,7 +460,7 @@ unsigned char get_ch()
gotched = getch();
return gotched;
-} // end get_ch()
+}
void seed_rng(long seed)
{