summaryrefslogtreecommitdiff
path: root/src/openttd.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-01-17 02:10:55 +0000
committerrubidium <rubidium@openttd.org>2008-01-17 02:10:55 +0000
commita325bef3f59f3c837e6b4713133d032b66361b11 (patch)
treeb1b9ce456d130907cb760255f76fef9e268a0cf3 /src/openttd.h
parent4e847a9c52ff27e17a29195b1fd822c37a105077 (diff)
downloadopenttd-a325bef3f59f3c837e6b4713133d032b66361b11.tar.xz
(svn r11889) -Change: small inconsistency between documentation and code. Patch by Yexo.
Diffstat (limited to 'src/openttd.h')
-rw-r--r--src/openttd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openttd.h b/src/openttd.h
index edc9d4339..092a0e20b 100644
--- a/src/openttd.h
+++ b/src/openttd.h
@@ -38,9 +38,9 @@ typedef uint16 DestinationID;
/* DestinationID must be at least as large as every these below, because it can
* be any of them
*/
-assert_compile(sizeof(DestinationID) == sizeof(DepotID));
-assert_compile(sizeof(DestinationID) == sizeof(WaypointID));
-assert_compile(sizeof(DestinationID) == sizeof(StationID));
+assert_compile(sizeof(DestinationID) >= sizeof(DepotID));
+assert_compile(sizeof(DestinationID) >= sizeof(WaypointID));
+assert_compile(sizeof(DestinationID) >= sizeof(StationID));
enum GameModes {
GM_MENU,