(svn r16446) -Fix (r16378): 'cast to pointer from integer of different size' warning

This commit is contained in:
glx 2009-05-26 23:37:34 +00:00
parent faae8f0177
commit 5991c5195c
1 changed files with 1 additions and 1 deletions

View File

@ -1386,7 +1386,7 @@ bool LoadOldVehicle(LoadgameState *ls, int num)
}
v->current_order.AssignOrder(UnpackOldOrder(_old_order));
if (_old_next_ptr != 0xFFFF) v->next = (Vehicle *)_old_next_ptr;
if (_old_next_ptr != 0xFFFF) v->next = (Vehicle *)(size_t)_old_next_ptr;
if (_cargo_count != 0) {
CargoPacket *cp = new CargoPacket((_cargo_source == 0xFF) ? INVALID_STATION : _cargo_source, _cargo_count);