Skip to content

Commit

Permalink
removed duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Dec 25, 2024
1 parent 385cfa7 commit 921eb25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZeDMDComm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ bool ZeDMDComm::Handshake(char* pDevice)
}

auto current_time = std::chrono::steady_clock::now();
if (current_time - handshake_start_time >= duration || m_stopFlag.load(std::memory_order_relaxed))
if (current_time - handshake_start_time >= duration)
{
return false;
}
Expand Down

0 comments on commit 921eb25

Please sign in to comment.