Fixed a potential bug in DTSC::seekPos

This commit is contained in:
Erik Zandvliet 2013-08-27 16:00:07 +02:00
parent 6cf42561a6
commit 86a745dbfb
2 changed files with 12 additions and 12 deletions

View file

@ -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;
};