Fix "downloads" command reporting incorrect progress

This commit is contained in:
Louis-Antoine 2020-06-01 10:37:05 +02:00
parent bf00955786
commit 3c3a60d189
1 changed files with 1 additions and 1 deletions

View File

@ -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;