diff options
author | aap <aap@papnet.eu> | 2020-06-01 20:51:18 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-06-01 20:51:18 +0200 |
commit | fdf8f35049a0126f848f286483a5a042fc0cc34e (patch) | |
tree | 27eccd49357d32a6c4b5f8394e6d99a479181e38 /src/vehicles/Automobile.cpp | |
parent | hanim fix (diff) | |
download | re3-fdf8f35049a0126f848f286483a5a042fc0cc34e.tar re3-fdf8f35049a0126f848f286483a5a042fc0cc34e.tar.gz re3-fdf8f35049a0126f848f286483a5a042fc0cc34e.tar.bz2 re3-fdf8f35049a0126f848f286483a5a042fc0cc34e.tar.lz re3-fdf8f35049a0126f848f286483a5a042fc0cc34e.tar.xz re3-fdf8f35049a0126f848f286483a5a042fc0cc34e.tar.zst re3-fdf8f35049a0126f848f286483a5a042fc0cc34e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Automobile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp index bb6a6bd6..450d32c1 100644 --- a/src/vehicles/Automobile.cpp +++ b/src/vehicles/Automobile.cpp @@ -840,7 +840,7 @@ CAutomobile::ProcessControl(void) if(GetStatus() == STATUS_PLAYER && pHandling->Flags & HANDLING_IS_BUS){ if(m_nBusDoorTimerEnd == 0) m_nBusDoorTimerEnd = 1000; - else if(m_nBusDoorTimerEnd > (uint32)CTimer::GetTimeStepInMilliseconds()) + else if(m_nBusDoorTimerEnd > CTimer::GetTimeStepInMilliseconds()) m_nBusDoorTimerEnd -= CTimer::GetTimeStepInMilliseconds(); } |