|
From: Tapio V. <aa...@us...> - 2009-11-16 10:50:28
|
Module: performous
Branch: master
Commit: ccabd21fae85a7b0c9a337c3c5dd5640dfd770f9
Author: Tapio Vierros <tap...@gm...>
Date: Mon Nov 16 12:49:04 2009 +0200
Name of track is now displayed in players screen.
---
game/screen_players.cc | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/game/screen_players.cc b/game/screen_players.cc
index 7cd1ec3..8caa6ba 100644
--- a/game/screen_players.cc
+++ b/game/screen_players.cc
@@ -115,7 +115,8 @@ void ScreenPlayers::draw() {
}
} else {
// Format the player information text
- oss_song << "You reached " << m_database.scores.front().score << " points!\n";
+ oss_song << m_database.scores.front().track << "\n";
+ oss_song << "You reached " << m_database.scores.front().score << " points!";
oss_order << "Please enter your Name!\n"
<< "Name: " << m_players.current().name << '\n'
<< "Search Text: "
|