From 67cfc8b2c23177f036eda97f3423d062ba0c3e90 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Fri, 29 Dec 2017 23:19:43 +0100 Subject: * RWY_DIR and AIRCRAFT_DIRECTION have been joint into a single enum. * Game.c: new prototypes GameGetParkingDirection() and GameGetRunwayDirection(). * Slight optimizations into GameRenderLevel(). * Added some comment headers into Gfx.c. --- Source/PltParser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Source/PltParser.c') diff --git a/Source/PltParser.c b/Source/PltParser.c index f9fffb0..8bcbc0f 100644 --- a/Source/PltParser.c +++ b/Source/PltParser.c @@ -23,6 +23,7 @@ /* ************************************* * Local Prototypes * *************************************/ + static void PltParserResetBuffers(TYPE_FLIGHT_DATA* ptrFlightData); bool PltParserLoadFile(char* strPath, TYPE_FLIGHT_DATA* ptrFlightData) @@ -92,7 +93,7 @@ bool PltParserLoadFile(char* strPath, TYPE_FLIGHT_DATA* ptrFlightData) int k; dprintf("Buffer: "); - + for (k = 0; k < strlen(buffer); k++) { dprintf("0x%02X ", buffer[k]); -- cgit v1.2.3