Changeset - r8324:0e7d8988b2c7
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2008-01-17 02:10:55
rubidium@openttd.org
(svn r11889) -Change: small inconsistency between documentation and code. Patch by Yexo.
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/openttd.h
Show inline comments
 
@@ -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,
0 comments (0 inline, 0 general)