Skip to content

Commit

Permalink
fixed set and start time using the wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Nbc66 authored Nov 2, 2024
1 parent 170f69c commit 9fbc932
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sp/src/public/sentence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,8 @@ void CSentence::ParseWords( CUtlBuffer& buf )
assert( pt );
pt->SetPhonemeCode( code );
pt->SetTag( phonemename );
pt->SetStartTime(startLocl);
pt->SetEndTime(endLocl);
pt->SetStartTime(start);
pt->SetEndTime(end);

AddPhonemeTag( wt, pt );
}
Expand Down Expand Up @@ -1761,4 +1761,4 @@ void CSentence::CreateEventWordDistribution( char const *pszText, float flSenten
}


#endif // !_STATIC_LINKED || _SHARED_LIB
#endif // !_STATIC_LINKED || _SHARED_LIB

0 comments on commit 9fbc932

Please sign in to comment.