summaryrefslogtreecommitdiff
path: root/src/tree_cmd.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2008-02-08 17:53:01 +0000
committerglx <glx@openttd.org>2008-02-08 17:53:01 +0000
commitec6a1776f3324cda4645fe57da24e9596495b07d (patch)
tree8a4c3b6ffc8f6e4ec69d37e7e8891ecde4a3d379 /src/tree_cmd.cpp
parent37e27a296e3e5c825f8b0c56acf6105f1ae2105b (diff)
downloadopenttd-ec6a1776f3324cda4645fe57da24e9596495b07d.tar.xz
(svn r12087) -Fix: MSVC warnings
Diffstat (limited to 'src/tree_cmd.cpp')
-rw-r--r--src/tree_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tree_cmd.cpp b/src/tree_cmd.cpp
index 4a996dbba..1184bfd52 100644
--- a/src/tree_cmd.cpp
+++ b/src/tree_cmd.cpp
@@ -498,7 +498,7 @@ static void DrawTile_Trees(TileInfo *ti)
uint mi = 0;
for (uint i = 1; i < trees; i++) {
- if (te[i].x + te[i].y < min) {
+ if ((uint)(te[i].x + te[i].y) < min) {
min = te[i].x + te[i].y;
mi = i;
}