diff --git a/Userland/Applications/SoundPlayer/Player.cpp b/Userland/Applications/SoundPlayer/Player.cpp index 31f4aadbf3..87c3684e48 100644 --- a/Userland/Applications/SoundPlayer/Player.cpp +++ b/Userland/Applications/SoundPlayer/Player.cpp @@ -155,6 +155,7 @@ void Player::toggle_mute() void Player::seek(int sample) { + sample *= (m_playback_manager.device_sample_rate() / static_cast(m_playback_manager.loader()->sample_rate())); m_playback_manager.seek(sample); }