diff options
Diffstat (limited to '')
-rw-r--r-- | source/cChunkMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cChunkMap.cpp b/source/cChunkMap.cpp index 0657f51d3..10577dc6f 100644 --- a/source/cChunkMap.cpp +++ b/source/cChunkMap.cpp @@ -466,7 +466,7 @@ cChunkPtr cChunkMap::cChunkLayer::GetChunk( int a_ChunkX, int a_ChunkY, int a_Ch if (!((LocalX < LAYER_SIZE) && (LocalZ < LAYER_SIZE) && (LocalX > -1) && (LocalZ > -1)))
{
- assert(!"Asking a cChunkLayer for a chunk that doesn't belong to it!");
+ ASSERT(!"Asking a cChunkLayer for a chunk that doesn't belong to it!");
return cChunkPtr();
}
|