Skip to content

Commit

Permalink
[#59] TrackEditor: Improvements and bugfixes (Part 14: Fixed CTrackRe…
Browse files Browse the repository at this point in the history
…ader::ReadTime method)
  • Loading branch information
tomas-nestorovic committed Feb 1, 2021
1 parent 9d55bce commit 040f2a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main/src/Image_TrackRW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@

TLogTime CImage::CTrackReader::ReadTime(){
// returns the next LogicalTime (or zero if all time information already read)
return *this ? logTimes[iNextTime++] : 0;
return *this ? (currentTime=logTimes[iNextTime++]) : 0;
}

void CImage::CTrackReader::SetCodec(Codec::TType codec){
Expand Down

0 comments on commit 040f2a1

Please sign in to comment.