Skip to previous track */
| 274 | |
| 275 | /** Skip to previous track */ |
| 276 | void MusicSystem::Prev() |
| 277 | { |
| 278 | this->ChangePlaylistPosition(-1); |
| 279 | if (_settings_client.music.playing) this->Play(); |
| 280 | |
| 281 | InvalidateWindowData(WC_MUSIC_WINDOW, 0); |
| 282 | } |
| 283 | |
| 284 | /** Check that music is playing if it should, and that appropriate playlist is active for game/main menu */ |
| 285 | void MusicSystem::CheckStatus() |
no test coverage detected