From a04d2f422e82b6c760b06daee47c0fcca1dc8064 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 18 Jul 2014 17:29:47 +0200 Subject: [PATCH] fix score --- qt/multypo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/multypo.cpp b/qt/multypo.cpp index fff1da7..07d60b3 100644 --- a/qt/multypo.cpp +++ b/qt/multypo.cpp @@ -104,7 +104,7 @@ void MultypoWindow::handleKeyPress(int device, QString string) } else if (state == Playing) { // all players are waiting or typing if (player->getState() == Player::Typing && player->getCurrentWord() == currentWord) { - int points = typingPlayers()+1; + int points = typingPlayers(); player->wordComplete(points); QString readyString = QString("READY: %1 points").arg(points); if (allPlayersWaiting()) { -- 2.30.2