summaryrefslogtreecommitdiff
path: root/openttd.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-26 17:31:57 +0000
committertruelight <truelight@openttd.org>2006-08-26 17:31:57 +0000
commit3b82b67391ee2068845c62cc373a00c7c2852b42 (patch)
treeaaff979a717a593c07293455db12da833ff9de7e /openttd.h
parent6846e38095f9f47bd80d9f652c705277c8597366 (diff)
downloadopenttd-3b82b67391ee2068845c62cc373a00c7c2852b42.tar.xz
(svn r6147) -Fix: I don't know how to write Destination :(
Diffstat (limited to 'openttd.h')
-rw-r--r--openttd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/openttd.h b/openttd.h
index 0e1baf020..9d6b1b44a 100644
--- a/openttd.h
+++ b/openttd.h
@@ -62,9 +62,9 @@ typedef union DestinationID {
uint16 disaster; ///< Please don't ask about it, but disasters uses orders to store stuff...
} DestinationID;
-/* All items of DestionationID has to be of the same size, because some part
- * of the code depends on the fact that DestionationID is the same for all
- * items inside DestionationID. Check PackOrder() */
+/* All items of DestinationID has to be of the same size, because some part
+ * of the code depends on the fact that DestinationID is the same for all
+ * items inside DestinationID. Check PackOrder() */
assert_compile(sizeof(StationID) == sizeof(DepotID));
assert_compile(sizeof(StationID) == sizeof(WaypointID));
assert_compile(sizeof(StationID) == sizeof(uint16));