mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-13 08:01:33 +01:00
list newest crefs first
This commit is contained in:
parent
e2c663622f
commit
5ea1f3b470
1 changed files with 2 additions and 2 deletions
|
@ -137,8 +137,8 @@ printCrefs( FILE* fil, const CrefMgrInfo* info, bool isLocal )
|
|||
fprintf( fil, "</tr>\n" );
|
||||
|
||||
time_t curTime = uptime();
|
||||
unsigned int ii;
|
||||
for ( ii = 0; ii < info->m_crefInfo.size(); ++ii ) {
|
||||
int ii;
|
||||
for ( ii = info->m_crefInfo.size() - 1; ii >= 0; --ii ) {
|
||||
const CrefInfo* crefInfo = &info->m_crefInfo[ii];
|
||||
|
||||
char conntime[32];
|
||||
|
|
Loading…
Reference in a new issue