Added a check for team count to prevent the engine from crashes when starting with <2 teams + changed the text in the Teams selection menu
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}