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/Camera.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Source/Camera.c') diff --git a/Source/Camera.c b/Source/Camera.c index 657fcab..f55ee4f 100644 --- a/Source/Camera.c +++ b/Source/Camera.c @@ -1,7 +1,6 @@ /* ************************************* * Includes * *************************************/ - #include "Camera.h" #include "Game.h" #include "System.h" @@ -10,7 +9,6 @@ /* ************************************* * Defines * *************************************/ - #define SPEED_CALCULATION_TIME 3 #define MAX_CAMERA_SPEED 5 #define MIN_CAMERA_SPEED 1 @@ -20,14 +18,12 @@ /* ************************************* * Local Variables * *************************************/ - static int32_t Camera_Max_X_Offset; static int32_t Camera_Max_Y_Offset; /* ************************************* * Local Prototypes * *************************************/ - static void CameraUpdateSpeed(TYPE_PLAYER* ptrPlayer); static bool CameraSpecialConditions(TYPE_PLAYER* ptrPlayer); -- cgit v1.2.3