From 844ed95f06c2cd87b28c5f594315606379608ac2 Mon Sep 17 00:00:00 2001 From: Marja Hassinen Date: Wed, 6 Jan 2010 17:24:32 +0200 Subject: [PATCH] Small fix for level numbers. --- src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.cpp b/src/game.cpp index 8fab98d..41bff30 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -623,7 +623,7 @@ void LevelSwitcher::onLevelCollectionChosen() if (level == 0) startTitle->setText("Starting a new game."); else - startTitle->setText(QString("Continuing a game from level ") + QString::number(level) + QString(".")); + startTitle->setText(QString("Continuing a game from level ") + QString::number(level+1) + QString(".")); scoreLabel->setText("0"); initiateLevel(); -- 1.7.9.5