forked from premiere/premiere-libtorrent
fixed reversed semantics of queue_up() and queue_down()
This commit is contained in:
parent
24186f219a
commit
1df53aa819
|
@ -1,4 +1,5 @@
|
|||
|
||||
* fixed reversed semantics of queue_up() and queue_down()
|
||||
* added missing functions to python bindings (file_priority())
|
||||
* fixed low_prio_disk support on linux
|
||||
* fixed time critical piece accounting in the request queue
|
||||
|
|
|
@ -481,13 +481,13 @@ namespace libtorrent
|
|||
void torrent_handle::queue_position_up() const
|
||||
{
|
||||
INVARIANT_CHECK;
|
||||
TORRENT_ASYNC_CALL(queue_down);
|
||||
TORRENT_ASYNC_CALL(queue_up);
|
||||
}
|
||||
|
||||
void torrent_handle::queue_position_down() const
|
||||
{
|
||||
INVARIANT_CHECK;
|
||||
TORRENT_ASYNC_CALL(queue_up);
|
||||
TORRENT_ASYNC_CALL(queue_down);
|
||||
}
|
||||
|
||||
void torrent_handle::queue_position_top() const
|
||||
|
|
Loading…
Reference in New Issue