From d6e8601a62d1d1d0b9fd2f5e21d53913ca3c07d0 Mon Sep 17 00:00:00 2001 From: glx Date: Tue, 10 Feb 2009 04:23:37 +0000 Subject: [PATCH] (svn r15438) -Fix (r15434): MSVC performance warning --- src/station_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 62760f3182..1facc4edf1 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1012,7 +1012,7 @@ CommandCost CmdBuildRailroadStation(TileIndex tile_org, DoCommandFlag flags, uin /* Check if we can allocate a custom stationspec to this station */ const StationSpec *statspec = GetCustomStationSpec((StationClassID)GB(p2, 0, 8), GB(p2, 8, 8)); - int specindex = AllocateSpecToStation(statspec, st, flags & DC_EXEC); + int specindex = AllocateSpecToStation(statspec, st, (flags & DC_EXEC) != 0); if (specindex == -1) return_cmd_error(STR_TOO_MANY_STATION_SPECS); if (statspec != NULL) {