Fixed a potential bug in DTSC::seekPos
This commit is contained in:
parent
6cf42561a6
commit
86a745dbfb
2 changed files with 12 additions and 12 deletions
|
@ -72,7 +72,7 @@ namespace DTSC {
|
|||
return true;
|
||||
}else{
|
||||
if (seekTime == rhs.seekTime){
|
||||
if (seekPos < rhs.seekPos){
|
||||
if (bytePos < rhs.bytePos){
|
||||
return true;
|
||||
}else{
|
||||
if (trackID < rhs.trackID){
|
||||
|
@ -84,7 +84,7 @@ namespace DTSC {
|
|||
return false;
|
||||
}
|
||||
long long unsigned int seekTime;
|
||||
long long unsigned int seekPos;
|
||||
long long unsigned int bytePos;
|
||||
unsigned int trackID;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue