summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/debug.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 10:02:07 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 10:02:07 +0000
commit0ed1d5f2217c5cee43cb9fe38ceff0234d9c617a (patch)
tree880f15fc603289730f3603abba33ba90eecafd47 /crawl-ref/source/debug.cc
parentecffe9770e544d7d3df5e225d838cbe68b3bdbd1 (diff)
downloadcrawl-ref-0ed1d5f2217c5cee43cb9fe38ceff0234d9c617a.tar.gz
crawl-ref-0ed1d5f2217c5cee43cb9fe38ceff0234d9c617a.zip
Remove useless debugging statement from _sort_monster_list()
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5532 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/debug.cc')
-rw-r--r--crawl-ref/source/debug.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/debug.cc b/crawl-ref/source/debug.cc
index 0516fe5816..7c39b68fba 100644
--- a/crawl-ref/source/debug.cc
+++ b/crawl-ref/source/debug.cc
@@ -700,11 +700,6 @@ void wizard_interlevel_travel()
static bool _sort_monster_list(int a, int b)
{
- if (a >= MAX_MONSTERS || b >= MAX_MONSTERS)
- {
- mprf("a = %d, b = %d", a, b);
- }
-
const monsters* m1 = &menv[a];
const monsters* m2 = &menv[b];