1
0

moved deafult action into deafult clause at src/Generating/DistortedHeightmap.cpp line 741

This commit is contained in:
Tycho Bickerstaff 2013-12-08 00:13:31 +00:00
parent 2942e57f93
commit 4c2490ed17

View File

@ -737,9 +737,11 @@ void cDistortedHeightmap::ComposeColumn(cChunkDesc & a_ChunkDesc, int a_RelX, in
FillColumnMesa(a_ChunkDesc, a_RelX, a_RelZ);
return;
}
default:
ASSERT(!"Unhandled biome");
return;
} // switch (Biome)
ASSERT(!"Unhandled biome");
ASSERT(!"Unexpected fallthrough");
}