diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2019-08-11 19:11:54 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2019-08-11 19:11:54 +0200 |
commit | 14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0 (patch) | |
tree | 671d1b9f6f0a3b67449f8d41b28724fe890619b4 /src/vehicles/Automobile.cpp | |
parent | Merge remote-tracking branch 'upstream/master' (diff) | |
download | re3-14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0.tar re3-14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0.tar.gz re3-14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0.tar.bz2 re3-14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0.tar.lz re3-14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0.tar.xz re3-14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0.tar.zst re3-14b945ba08bfa18d8ac61bb7f5c08b299ce8a2b0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Automobile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp index 00f53762..488dcf69 100644 --- a/src/vehicles/Automobile.cpp +++ b/src/vehicles/Automobile.cpp @@ -312,7 +312,7 @@ CAutomobile::ProcessControl(void) CVisibilityPlugins::SetClumpAlpha((RpClump*)m_rwObject, clumpAlpha); AutoPilot.m_flag1 = false; - AutoPilot.m_flag2 = false; + AutoPilot.m_bSlowedDownBecauseOfPeds = false; // Set Center of Mass to make car more stable if(strongGrip1 || bCheat3) @@ -3930,7 +3930,7 @@ CAutomobile::PlayCarHorn(void) void CAutomobile::PlayHornIfNecessary(void) { - if(AutoPilot.m_flag2 || + if(AutoPilot.m_bSlowedDownBecauseOfPeds || AutoPilot.m_flag1) if(!HasCarStoppedBecauseOfLight()) PlayCarHorn(); |