(svn r13817) -Cleanup (r13816): no need to check for ENABLE_NETWORK, _networking is defined anyway

This commit is contained in:
smatz 2008-07-24 16:23:55 +00:00
parent aae2aa64c4
commit 97eeb07201
1 changed files with 1 additions and 8 deletions

View File

@ -210,11 +210,7 @@ static void RailVehicleLengthChanged(const Vehicle *u)
GetString(buffer, STR_NEWGRF_BROKEN_VEHICLE_LENGTH, lastof(buffer));
DEBUG(grf, 0, "%s", buffer + 3);
#ifdef ENABLE_NETWORK
if (!_networking) _pause_game = -1;
#else
_pause_game = -1;
#endif
}
}
@ -233,11 +229,8 @@ void CheckTrainsLengths()
SetDParam(0, v->index);
SetDParam(1, v->owner);
ShowErrorMessage(INVALID_STRING_ID, STR_BROKEN_VEHICLE_LENGTH, 0, 0);
#ifdef ENABLE_NETWORK
if (!_networking) _pause_game = -1;
#else
_pause_game = -1;
#endif
}
}
}