(svn r10228) -Fix [FS#894]: why MSVC must always bitch about stuff?

This commit is contained in:
rubidium 2007-06-19 19:04:25 +00:00
parent b2bd361dae
commit aec52c4ebd
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ static int TerraformProc(TerraformerState *ts, TileIndex tile, int mode)
* basement and then you raise/lower the other corner. */
tileh = GetTileSlope(tile, &z);
if (tileh == unsafe_slope[mode] ||
tileh == SLOPE_STEEP | ComplementSlope(unsafe_slope[mode])) {
tileh == (SLOPE_STEEP | ComplementSlope(unsafe_slope[mode]))) {
_terraform_err_tile = tile;
_error_message = STR_1008_MUST_REMOVE_RAILROAD_TRACK;
return -1;