1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-30 01:49:10 +00:00

(svn r12068) -Fix(r12067): forgot a return

This commit is contained in:
belugas
2008-02-06 02:43:42 +00:00
parent f29c748d4c
commit 5049ff8e8e

View File

@@ -1376,7 +1376,7 @@ static void *IntToReference(uint index, SLRefType rt)
index++;
if (index == INVALID_VEHICLE) return NULL;
if (_Vehicle_pool.AddBlockIfNeeded(index)) GetVehicle(index);
if (_Vehicle_pool.AddBlockIfNeeded(index)) return GetVehicle(index);
error("Vehicles: failed loading savegame: too many vehicles");
default: NOT_REACHED();