diff options
author | erorcun <erayorcunus@gmail.com> | 2020-10-08 20:39:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 20:39:11 +0200 |
commit | b97f86deeaa80705941de14b95d32e801cae837f (patch) | |
tree | 8c286f6992a58fc3db885a5579b0d49a22f30e68 /src/modelinfo | |
parent | Merge pull request #755 from theR4K/miami (diff) | |
parent | Merge branch 'miami' into miami (diff) | |
download | re3-b97f86deeaa80705941de14b95d32e801cae837f.tar re3-b97f86deeaa80705941de14b95d32e801cae837f.tar.gz re3-b97f86deeaa80705941de14b95d32e801cae837f.tar.bz2 re3-b97f86deeaa80705941de14b95d32e801cae837f.tar.lz re3-b97f86deeaa80705941de14b95d32e801cae837f.tar.xz re3-b97f86deeaa80705941de14b95d32e801cae837f.tar.zst re3-b97f86deeaa80705941de14b95d32e801cae837f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/modelinfo/ModelIndices.h | 3 | ||||
-rw-r--r-- | src/modelinfo/VehicleModelInfo.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/modelinfo/ModelIndices.h b/src/modelinfo/ModelIndices.h index a8057d26..58aba733 100644 --- a/src/modelinfo/ModelIndices.h +++ b/src/modelinfo/ModelIndices.h @@ -257,6 +257,9 @@ enum MI_VICE8, MI_WFYG2 = 106, // last regular ped MI_SPECIAL01 = 109, + MI_SPECIAL02 = 110, + MI_SPECIAL03 = 111, + MI_SPECIAL04 = 112, MI_SPECIAL21 = 129, MI_LAST_PED = MI_SPECIAL21, diff --git a/src/modelinfo/VehicleModelInfo.h b/src/modelinfo/VehicleModelInfo.h index d9a3f59a..d03ab9bf 100644 --- a/src/modelinfo/VehicleModelInfo.h +++ b/src/modelinfo/VehicleModelInfo.h @@ -137,7 +137,7 @@ public: void SetVehicleComponentFlags(RwFrame *frame, uint32 flags); void PreprocessHierarchy(void); void GetWheelPosn(int32 n, CVector &pos); - CVector GetFrontSeatPosn(void) { return m_positions[m_vehicleType == VEHICLE_TYPE_BOAT ? BOAT_POS_FRONTSEAT : CAR_POS_FRONTSEAT]; }; + const CVector &GetFrontSeatPosn(void) { return m_vehicleType == VEHICLE_TYPE_BOAT ? m_positions[BOAT_POS_FRONTSEAT] : m_positions[CAR_POS_FRONTSEAT]; } int32 ChooseComponent(void); int32 ChooseSecondComponent(void); |