mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 10:52:23 +00:00
Fix "downloads" command reporting incorrect progress
This commit is contained in:
parent
bf00955786
commit
3c3a60d189
1 changed files with 1 additions and 1 deletions
|
@ -1433,7 +1433,7 @@ void Command_Downloads_f(void)
|
|||
&& transfer[node].txlist->ram == SF_FILE) // Node is downloading a file?
|
||||
{
|
||||
const char *name = transfer[node].txlist->id.filename;
|
||||
UINT32 position = transfer[node].position;
|
||||
UINT32 position = transfer[node].ackedsize;
|
||||
UINT32 size = transfer[node].txlist->size;
|
||||
char ratecolor;
|
||||
|
||||
|
|
Loading…
Reference in a new issue