diff --git a/src/processor_motion.cpp b/src/processor_motion.cpp
index c72c02973a4c57abea464811a32f59f707271c7a..08deb800317224f415bbb0b589f24967c4ad2716 100644
--- a/src/processor_motion.cpp
+++ b/src/processor_motion.cpp
@@ -596,7 +596,7 @@ PackKeyFramePtr ProcessorMotion::computeProcessingStep()
             //            throw std::runtime_error("Pack's KF and origin's KF have matching time stamps (i.e. below time tolerances)");
             processing_step_ = RUNNING_WITH_PACK_ON_ORIGIN;
         }
-        else if (pack->key_frame->getTimeStamp() < origin_ptr_->getTimeStamp() - params_motion_->time_tolerance)
+        else if (pack->key_frame->getTimeStamp() < origin_ptr_->getTimeStamp())
             processing_step_ = RUNNING_WITH_PACK_BEFORE_ORIGIN;
 
         else