File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Update Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -577,10 +577,10 @@ UpdateSleepTime ParticleUplinkCannonUpdate::update()
577577 else
578578 {
579579 Real speed = data->m_manualDrivingSpeed ;
580- #if ! RETAIL_COMPATIBLE_CRC
581- const Bool useFasterSpeed = m_scriptedWaypointMode || (m_lastDrivingClickTimeMsec != 0 && m_2ndLastDrivingClickTimeMsec != 0 && m_lastDrivingClickTimeMsec - m_2ndLastDrivingClickTimeMsec < data->m_doubleClickToFastDriveDelay );
580+ #if RETAIL_COMPATIBLE_CRC
581+ const Bool useFasterSpeed = m_scriptedWaypointMode || (m_lastDrivingClickFrame != 0 && m_2ndLastDrivingClickFrame != 0 && m_lastDrivingClickFrame - m_2ndLastDrivingClickFrame < data->m_doubleClickToFastDriveDelay );
582582#else
583- const Bool useFasterSpeed = m_scriptedWaypointMode || (m_lastDrivingClickFrame - m_2ndLastDrivingClickFrame < data->m_doubleClickToFastDriveDelay );
583+ const Bool useFasterSpeed = m_scriptedWaypointMode || (m_lastDrivingClickTimeMsec != 0 && m_2ndLastDrivingClickTimeMsec != 0 && m_lastDrivingClickTimeMsec - m_2ndLastDrivingClickTimeMsec < data->m_doubleClickToFastDriveDelay );
584584#endif
585585 if ( useFasterSpeed )
586586 {
You can’t perform that action at this time.
0 commit comments