DefaultTeam is now default to play with single and network game
authordisplacer
Tue, 10 Jan 2006 22:29:51 +0000
changeset 45 1072e7fe85c8
parent 44 1ef9546971ff
child 46 c99140d2355a
DefaultTeam is now default to play with single and network game
QTfrontend/hwform.cpp
--- a/QTfrontend/hwform.cpp	Tue Jan 10 21:57:41 2006 +0000
+++ b/QTfrontend/hwform.cpp	Tue Jan 10 22:29:51 2006 +0000
@@ -258,8 +258,8 @@
 void HWForm::SimpleGame()
 {
 	game = new HWGame(ui.CBResolution->currentIndex(), ui.CBFullscreen->isChecked());
-	game->AddTeam("team");
-	game->AddTeam("team");
+	game->AddTeam("DefaultTeam");
+	game->AddTeam("DefaultTeam");
 	game->StartLocal();
 }
 
@@ -348,7 +348,7 @@
 
 void HWForm::NetAddTeam()
 {
-	HWTeam team("team");
+	HWTeam team("DefaultTeam");
 	team.SetCfgDir(cfgdir.absolutePath());
 	team.LoadFromFile();
 	hwnet->AddTeam(team);