summaryrefslogtreecommitdiffstats
path: root/src/control/AutoPilot.h
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2020-12-09 01:15:20 +0100
committerGitHub <noreply@github.com>2020-12-09 01:15:20 +0100
commit6b654094a5299d55a3621a3a23b6dafbb48b78e9 (patch)
treee9735ff0ce34dbfca24bf6c4fc609cbacaac81f1 /src/control/AutoPilot.h
parentfix CObject::DeleteAllTempObjectsInArea (diff)
parentdon't cast script param to uint8 (diff)
downloadre3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar
re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.gz
re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.bz2
re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.lz
re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.xz
re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.zst
re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.zip
Diffstat (limited to 'src/control/AutoPilot.h')
-rw-r--r--src/control/AutoPilot.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/control/AutoPilot.h b/src/control/AutoPilot.h
index 337a93c1..6349fce6 100644
--- a/src/control/AutoPilot.h
+++ b/src/control/AutoPilot.h
@@ -4,7 +4,7 @@
class CVehicle;
struct CPathNode;
-enum eCarMission : uint8
+enum eCarMission
{
MISSION_NONE,
MISSION_CRUISE,
@@ -28,7 +28,7 @@ enum eCarMission : uint8
MISSION_BLOCKCAR_HANDBRAKESTOP,
};
-enum eCarTempAction : uint8
+enum eCarTempAction
{
TEMPACT_NONE,
TEMPACT_WAIT,
@@ -43,7 +43,7 @@ enum eCarTempAction : uint8
TEMPACT_SWERVERIGHT
};
-enum eCarDrivingStyle : uint8
+enum eCarDrivingStyle
{
DRIVINGSTYLE_STOP_FOR_CARS,
DRIVINGSTYLE_SLOW_DOWN_FOR_CARS,
@@ -69,9 +69,9 @@ public:
int8 m_nNextDirection;
int8 m_nCurrentLane;
int8 m_nNextLane;
- eCarDrivingStyle m_nDrivingStyle;
- eCarMission m_nCarMission;
- eCarTempAction m_nTempAction;
+ uint8 m_nDrivingStyle;
+ uint8 m_nCarMission;
+ uint8 m_nTempAction;
uint32 m_nTimeTempAction;
float m_fMaxTrafficSpeed;
uint8 m_nCruiseSpeed;