Default to one player

I think the majority of players use this feature for
goldfishing/practicing. Defaulting to one player for convenience.
This commit is contained in:
Matt Lowe 2015-04-02 13:23:39 +02:00
parent fb49a8867e
commit 986eab4d40

View file

@ -135,7 +135,7 @@ void MainWindow::actDisconnect()
void MainWindow::actSinglePlayer()
{
bool ok;
int numberPlayers = QInputDialog::getInt(this, tr("Number of players"), tr("Please enter the number of players."), 2, 1, 8, 1, &ok);
int numberPlayers = QInputDialog::getInt(this, tr("Number of players"), tr("Please enter the number of players."), 1, 1, 8, 1, &ok);
if (!ok)
return;