diff options
author | Treeki <treeki@gmail.com> | 2011-08-14 01:05:19 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-08-14 01:05:19 +0200 |
commit | b6be8298f7d026661e21c855e8f3546d9b370aa0 (patch) | |
tree | 423a1e1b5981ea796ca0063719dcfe2539b675b3 /src | |
parent | de4e75a4b26c9f52c515755bc3ac60c29fe8b645 (diff) | |
download | kamek-b6be8298f7d026661e21c855e8f3546d9b370aa0.tar.gz kamek-b6be8298f7d026661e21c855e8f3546d9b370aa0.zip |
forgot to remove this debug code
Diffstat (limited to '')
-rw-r--r-- | src/randtiles.cpp | 3 |
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;
|