Internet game lobby dialog shows now overview of games and whether they are private. Now showing connection progress before the internet game lobby.

This commit is contained in:
lotodore
2007-09-04 12:44:11 +00:00
parent b0ef569da0
commit 9ed217609b
15 changed files with 105 additions and 40 deletions
+2 -2
View File
@@ -635,7 +635,7 @@ ClientThread::AddGameInfo(unsigned gameId, const GameInfo &info)
boost::mutex::scoped_lock lock(m_gameInfoMapMutex);
m_gameInfoMap.insert(GameInfoMap::value_type(gameId, info));
}
GetCallback().SignalNetClientGameListNew(gameId, info.name);
GetCallback().SignalNetClientGameListNew(gameId);
}
void
@@ -652,7 +652,7 @@ ClientThread::RemoveGameInfo(unsigned gameId)
}
}
if (!name.empty())
GetCallback().SignalNetClientGameListRemove(gameId, name);
GetCallback().SignalNetClientGameListRemove(gameId);
}
void