summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 04:03:55 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 04:03:55 +0000
commitddac7e946394c0bf955889053ae8c9d43e158840 (patch)
tree06a963fab715ce62fdaa32e7ec8d815c87cb68c1 /crawl-ref/source/decks.cc
parent2e4b33da7d4365331fe740f618deca84e000ff0e (diff)
downloadcrawl-ref-ddac7e946394c0bf955889053ae8c9d43e158840.tar.gz
crawl-ref-ddac7e946394c0bf955889053ae8c9d43e158840.zip
Comment fix.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5832 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/decks.cc')
-rw-r--r--crawl-ref/source/decks.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 4f9bae63c2..fc4295663e 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -231,7 +231,7 @@ card_type get_card_and_flags(const item_def& deck, int idx,
const CrawlVector &cards = props["cards"].get_vector();
const CrawlVector &flags = props["card_flags"].get_vector();
- // negative idx means read from the end
+ // Negative idx means read from the end.
if (idx < 0)
idx += static_cast<int>(cards.size());