Changeset - r19683:1b9dd79cacb8
[Not reviewed]
master
0 2 0
terkhen - 12 years ago 2012-10-25 17:38:12
terkhen@openttd.org
(svn r24626) -Fix [FS#5432]: MSVC 2010 warnings.
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/group_gui.cpp
Show inline comments
 
@@ -511,7 +511,7 @@ public:
 

	
 
					y1 += this->tiny_step_height;
 
				}
 
				if (this->group_sb->GetPosition() + this->group_sb->GetCapacity() > this->groups.Length()) {
 
				if ((uint)this->group_sb->GetPosition() + this->group_sb->GetCapacity() > this->groups.Length()) {
 
					DrawGroupInfo(y1, r.left, r.right, NEW_GROUP);
 
				}
 
				break;
src/road_cmd.cpp
Show inline comments
 
@@ -795,7 +795,7 @@ do_clear:;
 
static bool CanConnectToRoad(TileIndex tile, RoadType rt, DiagDirection dir)
 
{
 
	RoadBits bits = GetAnyRoadBits(tile + TileOffsByDiagDir(dir), rt, false);
 
	return (bits & DiagDirToRoadBits(ReverseDiagDir(dir)));
 
	return (bits & DiagDirToRoadBits(ReverseDiagDir(dir))) != 0;
 
}
 

	
 
/**
0 comments (0 inline, 0 general)