diff options
author | Max Kellermann <max@duempel.org> | 2016-03-18 17:35:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-03-18 17:35:29 +0100 |
commit | 7b701530688d9a44ba6a622d18db5fe350a234fb (patch) | |
tree | cc9a09d2cec19e584de6d235ae68c366d17f383f /src/queue | |
parent | 7e096ee2c571125eae34fd19fc1124cb1cab9fca (diff) |
queue/Playlist: document that current/queued are "order number"
Diffstat (limited to 'src/queue')
-rw-r--r-- | src/queue/Playlist.hxx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/queue/Playlist.hxx b/src/queue/Playlist.hxx index 46ed9ae36..28bff09d1 100644 --- a/src/queue/Playlist.hxx +++ b/src/queue/Playlist.hxx @@ -73,16 +73,17 @@ struct playlist { unsigned error_count; /** - * The "current song pointer". This is the song which is - * played when we get the "play" command. It is also the song - * which is currently being played. + * The "current song pointer" (the order number). This is the + * song which is played when we get the "play" command. It is + * also the song which is currently being played. */ int current; /** - * The "next" song to be played, when the current one - * finishes. The decoder thread may start decoding and - * buffering it, while the "current" song is still playing. + * The "next" song to be played (the order number), when the + * current one finishes. The decoder thread may start + * decoding and buffering it, while the "current" song is + * still playing. * * This variable is only valid if #playing is true. */ |