diff options
author | Treeki <treeki@gmail.com> | 2011-08-14 01:05:32 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-08-14 01:05:32 +0200 |
commit | 15a45c3a765692d164df913d83dbaaedf760edb0 (patch) | |
tree | 12e799df06b889c77193e4d75c2dfcccc95f74dd /src/randtiles.cpp | |
parent | ca56395185126734ee07ec85c2d4ba0d153910f1 (diff) | |
download | kamek-15a45c3a765692d164df913d83dbaaedf760edb0.tar.gz kamek-15a45c3a765692d164df913d83dbaaedf760edb0.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;
|