fixed bug where is_sequential_download would return false when it should be true

This commit is contained in:
Arvid Norberg 2008-08-19 16:04:01 +00:00
parent 37389e4fe4
commit 0454fb77d7
1 changed files with 1 additions and 4 deletions

View File

@ -3525,14 +3525,11 @@ namespace libtorrent
void torrent::set_sequential_download(bool sd)
{
m_sequential_download = sd;
if (has_picker())
{
picker().sequential_download(sd);
}
else
{
m_sequential_download = sd;
}
}
void torrent::set_queue_position(int p)