1
0

Fixed warning unchecked enum value at Chunk.cpp line 841

This commit is contained in:
worktycho 2013-12-09 14:05:32 +00:00
parent a99bece3fa
commit c78f67dcc0

View File

@ -1,4 +1,3 @@
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#ifndef _WIN32
@ -908,8 +907,11 @@ void cChunk::ApplyWeatherToTop()
}
break;
} // case (snowy biomes)
// TODO: Rainy biomes should check for farmland and cauldrons
default:
{
break;
}
} // switch (biome)
}