mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix Team Arena server refresh time format
Make minute less than 10 have a leading 0. Change '7:1' to '7:01'.
This commit is contained in:
parent
e8450cae33
commit
471ea9e564
1 changed files with 1 additions and 1 deletions
|
@ -6021,7 +6021,7 @@ static void UI_StartServerRefresh(qboolean full, qboolean force)
|
|||
}
|
||||
|
||||
trap_RealTime(&q);
|
||||
trap_Cvar_Set( va("ui_lastServerRefresh_%i", ui_netSource.integer), va("%s-%i, %i at %i:%i", MonthAbbrev[q.tm_mon],q.tm_mday, 1900+q.tm_year,q.tm_hour,q.tm_min));
|
||||
trap_Cvar_Set( va("ui_lastServerRefresh_%i", ui_netSource.integer), va("%s-%i, %i at %i:%02i", MonthAbbrev[q.tm_mon],q.tm_mday, 1900+q.tm_year,q.tm_hour,q.tm_min));
|
||||
|
||||
if (!full) {
|
||||
UI_UpdatePendingPings();
|
||||
|
|
Loading…
Reference in a new issue