mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
task_http.c - comment this out until we have fixed the threading
errors
This commit is contained in:
parent
141046b45b
commit
89bb4f610d
@ -125,7 +125,7 @@ static int task_http_iterate_transfer(retro_task_t *task)
|
|||||||
if (!net_http_update(http->handle, &pos, &tot))
|
if (!net_http_update(http->handle, &pos, &tot))
|
||||||
{
|
{
|
||||||
/* TODO/FIXME - race issue */
|
/* TODO/FIXME - race issue */
|
||||||
task->progress = (tot == 0) ? -1 : (signed)(pos * 100 / tot);
|
//task->progress = (tot == 0) ? -1 : (signed)(pos * 100 / tot);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -232,7 +232,7 @@ static bool task_http_retriever(retro_task_t *task, void *data)
|
|||||||
|
|
||||||
/* Fill HTTP info link */
|
/* Fill HTTP info link */
|
||||||
strlcpy(info->url, http->connection.url, sizeof(info->url));
|
strlcpy(info->url, http->connection.url, sizeof(info->url));
|
||||||
info->progress = task->progress;
|
//info->progress = task->progress;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user