Merge tag 'v0.21.12'

release v0.21.12
This commit is contained in:
Max Kellermann
2019-08-03 12:53:23 +02:00
10 changed files with 245 additions and 166 deletions

View File

@@ -310,6 +310,11 @@ public:
gcc_pure
bool IsCurrentSong(const DetachedSong &_song) const noexcept;
gcc_pure
bool IsUnseekableCurrentSong(const DetachedSong &_song) const noexcept {
return !seekable && IsCurrentSong(_song);
}
gcc_pure
bool IsSeekableCurrentSong(const DetachedSong &_song) const noexcept {
return seekable && IsCurrentSong(_song);