mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-18 02:50:33 +00:00
http: fix uninitialized progress value
This commit is contained in:
parent
e99ca5947b
commit
b1e3fa5f4d
@ -2177,7 +2177,7 @@ void HTTP_Run( void )
|
|||||||
httpfile_t *curfile;
|
httpfile_t *curfile;
|
||||||
int iActiveCount = 0;
|
int iActiveCount = 0;
|
||||||
int iProgressCount = 0;
|
int iProgressCount = 0;
|
||||||
float flProgress;
|
float flProgress = 0;
|
||||||
qboolean fResolving = false;
|
qboolean fResolving = false;
|
||||||
|
|
||||||
for( curfile = http.first_file; curfile; curfile = curfile->next )
|
for( curfile = http.first_file; curfile; curfile = curfile->next )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user