diff options
author | rubidium <rubidium@openttd.org> | 2007-06-19 19:04:25 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-06-19 19:04:25 +0000 |
commit | aec52c4ebd1d23a24ed5313672e3f29dc4223f9c (patch) | |
tree | a43dd29d45f907f97b79ea98b6e8d131565aa4eb | |
parent | b2bd361dae164cdbd625c01c6c9cabc3f83a3059 (diff) | |
download | openttd-aec52c4ebd1d23a24ed5313672e3f29dc4223f9c.tar.xz |
(svn r10228) -Fix [FS#894]: why MSVC must always bitch about stuff?
-rw-r--r-- | src/clear_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clear_cmd.cpp b/src/clear_cmd.cpp index 3a5434afd..c69ff0d99 100644 --- a/src/clear_cmd.cpp +++ b/src/clear_cmd.cpp @@ -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; |