summaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2018-04-29 14:21:31 +0200
committerPatric Stout <truebrain@openttd.org>2018-04-29 15:32:16 +0200
commitaef69443e766089b0d9ceaa2255959ee327396f0 (patch)
treeba28c681763b53d9ed543bd84c1b069da6744a1d /src/map.cpp
parent85adde74858161240860ed9e4bf67f9be838de45 (diff)
downloadopenttd-aef69443e766089b0d9ceaa2255959ee327396f0.tar.xz
Remove: WinCE support
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp
index 252f20b60..986aa1bbb 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -87,7 +87,7 @@ TileIndex TileAdd(TileIndex tile, TileIndexDiff add,
seprintf(buf, lastof(buf), "TILE_ADD(%s) when adding 0x%.4X and 0x%.4X failed",
exp, tile, add);
-#if !defined(_MSC_VER) || defined(WINCE)
+#if !defined(_MSC_VER)
fprintf(stderr, "%s:%d %s\n", file, line, buf);
#else
_assert(buf, (char*)file, line);