forked from mirror/OpenTTD
(svn r16378) -Codechange: replace OldPool with simpler Pool. Compilation time, binary size and run time (with asserts disabled) should be improved
This commit is contained in:
@@ -21,9 +21,9 @@ uint CountArticulatedParts(EngineID engine_type, bool purchase_window)
|
||||
* either, so it doesn't matter how many articulated parts there are. */
|
||||
if (!Vehicle::CanAllocateItem()) return 0;
|
||||
|
||||
Vehicle *v = NULL;;
|
||||
Vehicle *v = NULL;
|
||||
if (!purchase_window) {
|
||||
v = new InvalidVehicle();
|
||||
v = new Vehicle();
|
||||
v->engine_type = engine_type;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user