diff options
author | aap <aap@papnet.eu> | 2020-11-01 10:29:37 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-11-01 10:29:37 +0100 |
commit | 9598a906270c4876c1a9c00b8959e694d645566c (patch) | |
tree | f411a5cb561d9533db4172ce2f7639a46079e7f3 | |
parent | tiny cleanup (diff) | |
parent | Also fix SetModelIndex in CAutomobile and CTrain ctors (diff) | |
download | re3-9598a906270c4876c1a9c00b8959e694d645566c.tar re3-9598a906270c4876c1a9c00b8959e694d645566c.tar.gz re3-9598a906270c4876c1a9c00b8959e694d645566c.tar.bz2 re3-9598a906270c4876c1a9c00b8959e694d645566c.tar.lz re3-9598a906270c4876c1a9c00b8959e694d645566c.tar.xz re3-9598a906270c4876c1a9c00b8959e694d645566c.tar.zst re3-9598a906270c4876c1a9c00b8959e694d645566c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Automobile.cpp | 2 | ||||
-rw-r--r-- | src/vehicles/Boat.cpp | 2 | ||||
-rw-r--r-- | src/vehicles/Train.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp index d1a7505e..77a7467a 100644 --- a/src/vehicles/Automobile.cpp +++ b/src/vehicles/Automobile.cpp @@ -79,7 +79,7 @@ CAutomobile::CAutomobile(int32 id, uint8 CreatedBy) bBigWheels = false; bWaterTight = false; - SetModelIndex(id); + CAutomobile::SetModelIndex(id); // Already done in CVehicle... switch(GetModelIndex()){ diff --git a/src/vehicles/Boat.cpp b/src/vehicles/Boat.cpp index 8b5de929..26774cad 100644 --- a/src/vehicles/Boat.cpp +++ b/src/vehicles/Boat.cpp @@ -60,7 +60,7 @@ CBoat::CBoat(int mi, uint8 owner) : CVehicle(owner) m_fMovingSpeed = 0.0f; m_skimmerThingTimer = 0.0f; m_nPoliceShoutTimer = CTimer::GetTimeInMilliseconds(); - SetModelIndex(mi); + CBoat::SetModelIndex(mi); pHandling = mod_HandlingManager.GetHandlingData((eHandlingId)minfo->m_handlingId); pFlyingHandling = mod_HandlingManager.GetFlyingPointer((eHandlingId)minfo->m_handlingId); diff --git a/src/vehicles/Train.cpp b/src/vehicles/Train.cpp index fb8361c5..9f30cfb7 100644 --- a/src/vehicles/Train.cpp +++ b/src/vehicles/Train.cpp @@ -45,7 +45,7 @@ CTrain::CTrain(int32 id, uint8 CreatedBy) CVehicleModelInfo *mi = (CVehicleModelInfo*)CModelInfo::GetModelInfo(id); m_vehType = VEHICLE_TYPE_TRAIN; pHandling = mod_HandlingManager.GetHandlingData((eHandlingId)mi->m_handlingId); - SetModelIndex(id); + CTrain::SetModelIndex(id); Doors[0].Init(0.8f, 0.0f, 1, 0); Doors[1].Init(-0.8f, 0.0f, 0, 0); |