summaryrefslogtreecommitdiff
path: root/src/randtiles.cpp
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-08-14 01:05:19 +0200
committerTreeki <treeki@gmail.com>2011-08-14 01:05:19 +0200
commitb6be8298f7d026661e21c855e8f3546d9b370aa0 (patch)
tree423a1e1b5981ea796ca0063719dcfe2539b675b3 /src/randtiles.cpp
parentde4e75a4b26c9f52c515755bc3ac60c29fe8b645 (diff)
downloadkamek-b6be8298f7d026661e21c855e8f3546d9b370aa0.tar.gz
kamek-b6be8298f7d026661e21c855e8f3546d9b370aa0.zip
forgot to remove this debug code
Diffstat (limited to '')
-rw-r--r--src/randtiles.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/randtiles.cpp b/src/randtiles.cpp
index 34e2daf..f4853d4 100644
--- a/src/randtiles.cpp
+++ b/src/randtiles.cpp
@@ -25,12 +25,9 @@ public:
}
bool contains(const char *name) {
- OSReport("NameList[%p] with %d names being compared against %s\n", this, count, name);
for (int i = 0; i < count; i++) {
- OSReport("Checking %s\n", getName(i));
if (strcmp(name, getName(i)) == 0)
return true;
- OSReport("Did not pass\n");
}
return false;