mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 13:51:31 +00:00
Move declaration to appease C90
also remove some extra tab characters
This commit is contained in:
parent
afc6bdbc7e
commit
03150e5fe6
1 changed files with 5 additions and 6 deletions
|
@ -1241,15 +1241,16 @@ static inline void CL_DrawConnectionStatus(void)
|
||||||
if (cl_mode == CL_LOADFILES)
|
if (cl_mode == CL_LOADFILES)
|
||||||
{
|
{
|
||||||
INT32 totalfileslength;
|
INT32 totalfileslength;
|
||||||
|
INT32 loadcompletednum = 0;
|
||||||
|
INT32 i;
|
||||||
|
|
||||||
V_DrawCenteredString(BASEVIDWIDTH/2, BASEVIDHEIGHT-24-24, V_YELLOWMAP, "Press ESC to abort");
|
V_DrawCenteredString(BASEVIDWIDTH/2, BASEVIDHEIGHT-24-24, V_YELLOWMAP, "Press ESC to abort");
|
||||||
|
|
||||||
//ima just count files here
|
//ima just count files here
|
||||||
INT32 loadcompletednum = 0;
|
|
||||||
INT32 i;
|
|
||||||
for (i = 0; i < fileneedednum; i++)
|
for (i = 0; i < fileneedednum; i++)
|
||||||
if (fileneeded[i].status == FS_OPEN)
|
if (fileneeded[i].status == FS_OPEN)
|
||||||
loadcompletednum++;
|
loadcompletednum++;
|
||||||
|
|
||||||
// Loading progress
|
// Loading progress
|
||||||
V_DrawCenteredString(BASEVIDWIDTH/2, BASEVIDHEIGHT-24-32, V_YELLOWMAP, "Loading server addons...");
|
V_DrawCenteredString(BASEVIDWIDTH/2, BASEVIDHEIGHT-24-32, V_YELLOWMAP, "Loading server addons...");
|
||||||
totalfileslength = (INT32)((loadcompletednum/(double)(fileneedednum)) * 256);
|
totalfileslength = (INT32)((loadcompletednum/(double)(fileneedednum)) * 256);
|
||||||
|
@ -1279,8 +1280,6 @@ static inline void CL_DrawConnectionStatus(void)
|
||||||
V_DrawFill(BASEVIDWIDTH/2-128, BASEVIDHEIGHT-58, 256, 8, 175);
|
V_DrawFill(BASEVIDWIDTH/2-128, BASEVIDHEIGHT-58, 256, 8, 175);
|
||||||
V_DrawFill(BASEVIDWIDTH/2-128, BASEVIDHEIGHT-58, dldlength, 8, 160);
|
V_DrawFill(BASEVIDWIDTH/2-128, BASEVIDHEIGHT-58, dldlength, 8, 160);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
memset(tempname, 0, sizeof(tempname));
|
memset(tempname, 0, sizeof(tempname));
|
||||||
// offset filename to just the name only part
|
// offset filename to just the name only part
|
||||||
filename += strlen(filename) - nameonlylength(filename);
|
filename += strlen(filename) - nameonlylength(filename);
|
||||||
|
@ -1323,7 +1322,7 @@ static inline void CL_DrawConnectionStatus(void)
|
||||||
else
|
else
|
||||||
V_DrawString(BASEVIDWIDTH/2-128, BASEVIDHEIGHT-24, V_20TRANS|V_MONOSPACE,
|
V_DrawString(BASEVIDWIDTH/2-128, BASEVIDHEIGHT-24, V_20TRANS|V_MONOSPACE,
|
||||||
va(" %4uK/%4uK",totaldldsize>>10,totalfilesrequestedsize>>10));
|
va(" %4uK/%4uK",totaldldsize>>10,totalfilesrequestedsize>>10));
|
||||||
|
|
||||||
V_DrawRightAlignedString(BASEVIDWIDTH/2+128, BASEVIDHEIGHT-24, V_20TRANS|V_MONOSPACE,
|
V_DrawRightAlignedString(BASEVIDWIDTH/2+128, BASEVIDHEIGHT-24, V_20TRANS|V_MONOSPACE,
|
||||||
va("%2u/%2u Files ",downloadcompletednum,totalfilesrequestednum));
|
va("%2u/%2u Files ",downloadcompletednum,totalfilesrequestednum));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue