diff -r 570224bb8b30 -r e968e19a464c QTfrontend/newnetclient.cpp --- a/QTfrontend/newnetclient.cpp Sat Feb 17 21:51:33 2007 +0000 +++ b/QTfrontend/newnetclient.cpp Sun Feb 18 12:20:36 2007 +0000 @@ -284,6 +284,7 @@ void HWNewNet::RunGame() { HWGame* game = new HWGame(config, m_pGameCFGWidget, m_pTeamSelWidget); + connect(game, SIGNAL(GameStateChanged(GameState)), this, SIGNAL(GameStateChanged(GameState))); connect(game, SIGNAL(SendNet(const QByteArray &)), this, SLOT(SendNet(const QByteArray &))); connect(this, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); connect(this, SIGNAL(LocalCFG(const QString &)), game, SLOT(LocalCFG(const QString &)));