From d1f55e8b45df2dfd84bdde3e2566ef14c9ba40f1 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Sun, 11 Jun 2017 13:58:33 +0200 Subject: * Tried to get some work done in MapEditor with no success so far. * Timers with no repeat flag were being set to NULL, but this is not actually desired! * Reenabled transparency for aircraft shadow. * Deprecated NotificationRequest flags, and replaced by system timer handling. --- Source/PltParser.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'Source/PltParser.c') diff --git a/Source/PltParser.c b/Source/PltParser.c index 41e2da0..922dd36 100644 --- a/Source/PltParser.c +++ b/Source/PltParser.c @@ -224,7 +224,6 @@ bool PltParserLoadFile(char* strPath, TYPE_FLIGHT_DATA* ptrFlightData) } ptrFlightData->State[aircraftIndex] = STATE_IDLE; - ptrFlightData->NotificationRequest[aircraftIndex] = false; aircraftIndex++; } @@ -253,7 +252,6 @@ void PltParserResetBuffers(TYPE_FLIGHT_DATA* ptrFlightData) memset(ptrFlightData->Hours,0,GAME_MAX_AIRCRAFT); memset(ptrFlightData->Minutes,0,GAME_MAX_AIRCRAFT); memset(ptrFlightData->State,STATE_IDLE,GAME_MAX_AIRCRAFT); - memset(ptrFlightData->NotificationRequest,0,GAME_MAX_AIRCRAFT); memset(ptrFlightData->Parking,0,GAME_MAX_AIRCRAFT); memset(ptrFlightData->Finished,0,GAME_MAX_AIRCRAFT); } -- cgit v1.2.3