We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c1ad2 commit eb8fffaCopy full SHA for eb8fffa
SerialPrograms/Source/CommonFramework/VideoPipeline/VideoOverlaySession.cpp
@@ -80,8 +80,8 @@ void VideoOverlaySession::stats_thread(){
80
{
81
std::vector<OverlayStatSnapshot> lines;
82
ReadSpinLock lg0(m_lock);
83
- for (const auto& stat : m_stats){
84
- OverlayStatSnapshot snapshot = stat.first->get_current();
+ for (const auto& stat : m_stats_order){
+ OverlayStatSnapshot snapshot = stat->get_current();
85
if (!snapshot.text.empty()){
86
lines.emplace_back(std::move(snapshot));
87
}
0 commit comments