1
0

Removed a debugging construct that accidentally leaked into previous commit

git-svn-id: http://mc-server.googlecode.com/svn/trunk@485 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2012-05-08 11:34:04 +00:00
parent f2681777fb
commit 3fe79d8516

View File

@ -233,14 +233,6 @@ bool cWSSAnvil::SaveChunk(const cChunkCoords & a_Chunk)
return false;
}
// DEBUG: How fast is it?
DWORD BeginTick = GetTickCount();
for (int i = 0; i < 1000; i++)
{
SaveChunkToData(a_Chunk, ChunkData);
}
LOGINFO("1000* SaveChunk took %d ticks.", GetTickCount() - BeginTick);
// Everything successful
return true;
}