summaryrefslogtreecommitdiff
path: root/src/script/api/script_waypoint.hpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2012-01-07 18:37:22 +0000
committersmatz <smatz@openttd.org>2012-01-07 18:37:22 +0000
commit24bf6ea4955dad7c2dd65214fc500b08d2b9cbee (patch)
tree14fe48034bed78cc39153315e241bab5dc6bb8ed /src/script/api/script_waypoint.hpp
parent182969f53159401a57fca5801a352e7aa3ffda77 (diff)
downloadopenttd-24bf6ea4955dad7c2dd65214fc500b08d2b9cbee.tar.xz
(svn r23770) -Fix: compilation with GCC 4.7
Diffstat (limited to 'src/script/api/script_waypoint.hpp')
-rw-r--r--src/script/api/script_waypoint.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/api/script_waypoint.hpp b/src/script/api/script_waypoint.hpp
index afbc435f6..7a8b4c97b 100644
--- a/src/script/api/script_waypoint.hpp
+++ b/src/script/api/script_waypoint.hpp
@@ -41,8 +41,8 @@ public:
*/
enum WaypointType {
/* Note: these values represent part of the in-game StationFacility enum */
- WAYPOINT_RAIL = ::FACIL_TRAIN, ///< Rail waypoint
- WAYPOINT_BUOY = ::FACIL_DOCK, ///< Buoy
+ WAYPOINT_RAIL = (int)::FACIL_TRAIN, ///< Rail waypoint
+ WAYPOINT_BUOY = (int)::FACIL_DOCK, ///< Buoy
WAYPOINT_ANY = WAYPOINT_RAIL | WAYPOINT_BUOY, ///< All waypoint types
};