diff -r 2d0f404cdf05 -r c79cb5e5b24a QTfrontend/hwform.cpp --- a/QTfrontend/hwform.cpp Sun Sep 03 12:56:13 2006 +0000 +++ b/QTfrontend/hwform.cpp Sun Sep 03 13:54:45 2006 +0000 @@ -86,6 +86,7 @@ connect(ui.pageEditTeam->BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); connect(ui.pageMultiplayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoToMain())); + connect(ui.pageMultiplayer->BtnStartMPGame, SIGNAL(clicked()), this, SLOT(StartMPGame())); connect(ui.pagePlayDemo->BtnBack, SIGNAL(clicked()), this, SLOT(GoToMain())); connect(ui.pagePlayDemo->BtnPlayDemo, SIGNAL(clicked()), this, SLOT(PlayDemo())); @@ -254,3 +255,10 @@ ui.pageNetGame->listNetTeams->addItems(teams); } +void HWForm::StartMPGame() +{ + game = new HWGame(config, ui.pageLocalGame->gameCFG); + game->AddTeam("DefaultTeam"); + game->AddTeam("DefaultTeam"); + game->StartLocal(); +}