Changeset - r12673:b1d9a3d92e89
[Not reviewed]
master
0 2 0
rubidium - 15 years ago 2009-08-09 19:06:35
rubidium@openttd.org
(svn r17138) -Fix: some MSVC 64 bits compiler warnings
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/saveload/waypoint_sl.cpp
Show inline comments
 
@@ -47,7 +47,7 @@ static void UpdateWaypointOrder(Order *o
 
	for (OldWaypoint *wp = _old_waypoints.Begin(); wp != _old_waypoints.End(); wp++) {
 
		if (wp->index != o->GetDestination()) continue;
 

	
 
		o->SetDestination(wp->new_index);
 
		o->SetDestination((DestinationID)wp->new_index);
 
		return;
 
	}
 
}
src/settings_gui.cpp
Show inline comments
 
@@ -615,7 +615,7 @@ public:
 

	
 
				if (x >= 10) {
 
					/* Increase button clicked */
 
					val = min(val + sdb->interval, sdb->max);
 
					val = min(val + sdb->interval, (int32)sdb->max);
 
					this->clicked_increase = true;
 
				} else {
 
					/* Decrease button clicked */
0 comments (0 inline, 0 general)