From: Marja Hassinen Date: Wed, 6 Jan 2010 13:40:53 +0000 (+0200) Subject: Minor ui tweaking. X-Git-Tag: 0.1~12 X-Git-Url: http://vcs.maemo.org/git/?p=evilplumber;a=commitdiff_plain;h=8090f068012b27911604d3e57bfd39e93485edce Minor ui tweaking. --- diff --git a/src/game.cpp b/src/game.cpp index 5f9c12d..c30ba40 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -607,7 +607,11 @@ void LevelSwitcher::onLevelCollectionChosen() } totalScore = 0; - startTitle->setText("Starting a new game."); + if (level == 0) + startTitle->setText("Starting a new game."); + else + startTitle->setText(QString("Continuing a game from level ") + QString::number(level) + QString(".")); + scoreLabel->setText("0"); initiateLevel(); }