diff options
author | aap <aap@papnet.eu> | 2019-07-06 19:44:00 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-06 19:44:00 +0200 |
commit | 00461224a94692f5cdafc1b4309923a5539f1113 (patch) | |
tree | f3642f0f2cb985c61bb76e5bdb0988e1be1285c5 /src/entities/Physical.cpp | |
parent | misc classes finished (diff) | |
download | re3-00461224a94692f5cdafc1b4309923a5539f1113.tar re3-00461224a94692f5cdafc1b4309923a5539f1113.tar.gz re3-00461224a94692f5cdafc1b4309923a5539f1113.tar.bz2 re3-00461224a94692f5cdafc1b4309923a5539f1113.tar.lz re3-00461224a94692f5cdafc1b4309923a5539f1113.tar.xz re3-00461224a94692f5cdafc1b4309923a5539f1113.tar.zst re3-00461224a94692f5cdafc1b4309923a5539f1113.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Physical.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/entities/Physical.cpp b/src/entities/Physical.cpp index b570efd9..14891cd9 100644 --- a/src/entities/Physical.cpp +++ b/src/entities/Physical.cpp @@ -1858,10 +1858,10 @@ CPhysical::ProcessCollision(void) CVehicle *veh = (CVehicle*)this; if(veh->m_vehType == VEHICLE_TYPE_CAR){ CAutomobile *car = (CAutomobile*)this; - car->m_afWheelSuspDist[0] = 1.0f; - car->m_afWheelSuspDist[1] = 1.0f; - car->m_afWheelSuspDist[2] = 1.0f; - car->m_afWheelSuspDist[3] = 1.0f; + car->m_aWheelDist[0] = 1.0f; + car->m_aWheelDist[1] = 1.0f; + car->m_aWheelDist[2] = 1.0f; + car->m_aWheelDist[3] = 1.0f; }else if(veh->m_vehType == VEHICLE_TYPE_BIKE){ assert(0 && "TODO - but unused"); } |