(svn r17138) -Fix: some MSVC 64 bits compiler warnings

This commit is contained in:
rubidium 2009-08-09 19:06:35 +00:00
parent 02d2afcb19
commit dcea681cbb
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ static void UpdateWaypointOrder(Order *o)
for (OldWaypoint *wp = _old_waypoints.Begin(); wp != _old_waypoints.End(); wp++) { for (OldWaypoint *wp = _old_waypoints.Begin(); wp != _old_waypoints.End(); wp++) {
if (wp->index != o->GetDestination()) continue; if (wp->index != o->GetDestination()) continue;
o->SetDestination(wp->new_index); o->SetDestination((DestinationID)wp->new_index);
return; return;
} }
} }

View File

@ -615,7 +615,7 @@ public:
if (x >= 10) { if (x >= 10) {
/* Increase button clicked */ /* Increase button clicked */
val = min(val + sdb->interval, sdb->max); val = min(val + sdb->interval, (int32)sdb->max);
this->clicked_increase = true; this->clicked_increase = true;
} else { } else {
/* Decrease button clicked */ /* Decrease button clicked */