diff options
Diffstat (limited to 'src/PlaylistControl.cxx')
-rw-r--r-- | src/PlaylistControl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PlaylistControl.cxx b/src/PlaylistControl.cxx index 5b33486e3..8fb634b77 100644 --- a/src/PlaylistControl.cxx +++ b/src/PlaylistControl.cxx @@ -250,8 +250,8 @@ playlist::SeekCurrent(player_control &pc, float seek_time, bool relative) if (relative) { const auto status = pc.GetStatus(); - if (status.state != PLAYER_STATE_PLAY && - status.state != PLAYER_STATE_PAUSE) + if (status.state != PlayerState::PLAY && + status.state != PlayerState::PAUSE) return PLAYLIST_RESULT_NOT_PLAYING; seek_time += (int)status.elapsed_time; |