diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2019-11-29 16:30:04 +0100 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2019-12-01 20:44:57 +0100 |
commit | c7e9ddb56624d73a3373a8246cc49ed2728d49a3 (patch) | |
tree | a1755146bcbe28247e5f0f7a94859554116ba773 /src/vehicles/Vehicle.h | |
parent | Implement ProcessVehicleSirenOrAlarm (diff) | |
download | re3-c7e9ddb56624d73a3373a8246cc49ed2728d49a3.tar re3-c7e9ddb56624d73a3373a8246cc49ed2728d49a3.tar.gz re3-c7e9ddb56624d73a3373a8246cc49ed2728d49a3.tar.bz2 re3-c7e9ddb56624d73a3373a8246cc49ed2728d49a3.tar.lz re3-c7e9ddb56624d73a3373a8246cc49ed2728d49a3.tar.xz re3-c7e9ddb56624d73a3373a8246cc49ed2728d49a3.tar.zst re3-c7e9ddb56624d73a3373a8246cc49ed2728d49a3.zip |
Diffstat (limited to 'src/vehicles/Vehicle.h')
-rw-r--r-- | src/vehicles/Vehicle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicles/Vehicle.h b/src/vehicles/Vehicle.h index 3046a58f..2399e631 100644 --- a/src/vehicles/Vehicle.h +++ b/src/vehicles/Vehicle.h @@ -286,7 +286,7 @@ class cTransmission; class cVehicleParams { public: - uint8 m_bDistancECalculated; + bool m_bDistanceCalculated; char gap_1[3]; float m_fDistance; CVehicle *m_pVehicle; @@ -295,4 +295,4 @@ public: float m_fVelocityChange; }; -static_assert(sizeof(cVehicleParams) == 0x18, "CVehicle: error"); +static_assert(sizeof(cVehicleParams) == 0x18, "cVehicleParams: error"); |