diff options
Diffstat (limited to '')
-rw-r--r-- | src/randtiles.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/randtiles.cpp b/src/randtiles.cpp index 1508200..da86a92 100644 --- a/src/randtiles.cpp +++ b/src/randtiles.cpp @@ -94,13 +94,13 @@ RandomTileData *RandomTileData::instance = 0; dDvdLoader_c RandTileLoader;
extern "C" bool RandTileLoadHook() {
- OSReport("Trying to load...");
+ // OSReport("Trying to load...");
void *buf = RandTileLoader.load("/NewerRes/RandTiles.bin");
if (buf == 0) {
- OSReport("Failed.\n");
+ // OSReport("Failed.\n");
return false;
} else {
- OSReport("Successfully loaded RandTiles.bin [%p].\n", buf);
+ // OSReport("Successfully loaded RandTiles.bin [%p].\n", buf);
RandomTileData::instance = (RandomTileData*)buf;
return true;
}
@@ -114,7 +114,7 @@ extern "C" void IdentifyTilesets(RTilemapClass *self) { const char *tilesetName = BGDatClass::instance->getTilesetName(self->areaID, i);
self->sections[i] = RandomTileData::instance->getSection(tilesetName);
- OSReport("[%d] Chose %p for %s\n", i, self->sections[i], tilesetName);
+ // OSReport("[%d] Chose %p for %s\n", i, self->sections[i], tilesetName);
}
}
|