author | richk |
Wed, 16 Apr 2008 00:07:47 +0000 | |
branch | NewGRF_ports |
changeset 10200 | aba3af04cdbd |
parent 6856 | 0e8e4ebf23ff |
permissions | -rw-r--r-- |
/* $Id$ */ /** @file airport.cpp */ #include "stdafx.h" #include "openttd.h" #include "fsmport.h" FSMPortClass::~FSMPortClass() { for (uint i = 0; i < num_positions; i++) { FSMCommand *current = layout[i].next; while (current != NULL) { FSMCommand *next = current->next; free(current); current = next; }; } free(layout); }