# HG changeset patch # User rubidium # Date 2008-03-28 16:36:59 # Node ID fb76508ac3fff1b8d413b7b6d7a22b9cffa139b9 # Parent b6e9d5dbdc1b110a24848c7500de6e67783506c6 (svn r12471) -Codechange: move SignID to a more logical location. diff --git a/src/openttd.h b/src/openttd.h --- a/src/openttd.h +++ b/src/openttd.h @@ -20,7 +20,6 @@ typedef EngineID *EngineList; ///< engin /* IDs used in Pools */ typedef uint16 WaypointID; -typedef uint16 SignID; typedef uint16 EngineRenewID; enum GameModes { diff --git a/src/signs.h b/src/signs.h --- a/src/signs.h +++ b/src/signs.h @@ -7,6 +7,7 @@ #include "oldpool.h" +typedef uint16 SignID; struct Sign; DECLARE_OLD_POOL(Sign, Sign, 2, 16000)