mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
AUDIO: Better handle endOfStream() vs endOfData() in SubSeekableAudioStream
This commit is contained in:
parent
d8ef40879c
commit
dc155b23f0
@ -289,7 +289,8 @@ public:
|
||||
|
||||
int getRate() const { return _parent->getRate(); }
|
||||
|
||||
bool endOfData() const { return (_pos >= _length) || _parent->endOfStream(); }
|
||||
bool endOfData() const { return (_pos >= _length) || _parent->endOfData(); }
|
||||
bool endOfStream() const { return (_pos >= _length) || _parent->endOfStream(); }
|
||||
|
||||
bool seek(const Timestamp &where);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user