mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
More of r5556.
git-svn-id: https://svn.eduke32.com/eduke32@5635 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e07fff7d64
commit
db535acbf8
1 changed files with 4 additions and 4 deletions
|
@ -2035,19 +2035,19 @@ static int32_t G_PrintTime_ClockPad(void)
|
||||||
int32_t clockpad = 2;
|
int32_t clockpad = 2;
|
||||||
int32_t ii, ij;
|
int32_t ii, ij;
|
||||||
|
|
||||||
for (ii=g_player[myconnectindex].ps->player_par/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++);
|
for (ii=g_player[myconnectindex].ps->player_par/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++) { }
|
||||||
clockpad = max(clockpad, ij);
|
clockpad = max(clockpad, ij);
|
||||||
if (!(ud.volume_number == 0 && ud.last_level-1 == 7 && boardfilename[0]))
|
if (!(ud.volume_number == 0 && ud.last_level-1 == 7 && boardfilename[0]))
|
||||||
{
|
{
|
||||||
for (ii=MapInfo[G_LastMapInfoIndex()].partime/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++);
|
for (ii=MapInfo[G_LastMapInfoIndex()].partime/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++) { }
|
||||||
clockpad = max(clockpad, ij);
|
clockpad = max(clockpad, ij);
|
||||||
if (!NAM_WW2GI && MapInfo[G_LastMapInfoIndex()].designertime)
|
if (!NAM_WW2GI && MapInfo[G_LastMapInfoIndex()].designertime)
|
||||||
{
|
{
|
||||||
for (ii=MapInfo[G_LastMapInfoIndex()].designertime/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++);
|
for (ii=MapInfo[G_LastMapInfoIndex()].designertime/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++) { }
|
||||||
clockpad = max(clockpad, ij);
|
clockpad = max(clockpad, ij);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ud.playerbest > 0) for (ii=ud.playerbest/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++);
|
if (ud.playerbest > 0) for (ii=ud.playerbest/(REALGAMETICSPERSEC*60), ij=1; ii>9; ii/=10, ij++) { }
|
||||||
clockpad = max(clockpad, ij);
|
clockpad = max(clockpad, ij);
|
||||||
|
|
||||||
return clockpad;
|
return clockpad;
|
||||||
|
|
Loading…
Reference in a new issue