This commit is contained in:
2026-07-18 23:41:05 +02:00
parent 6b6ad48617
commit 444e826d1b

View File

@@ -198,7 +198,7 @@ public:
std::string gatherStats() { std::string gatherStats() {
// return "ChunkCache: 1024"; // return "ChunkCache: 1024";
std::stringstream ss; std::stringstream ss;
ss << "ChunkCache: " << CHUNK_CACHE_WIDTH * CHUNK_CACHE_WIDTH; ss << "ChunkCache: " << LevelConstants::CHUNK_CACHE_WIDTH * LevelConstants::CHUNK_CACHE_WIDTH;
return ss.str(); return ss.str();
} }