|
From: Lasse Kärkkäi. <tr...@us...> - 2010-01-13 14:12:53
|
Module: performous
Branch: master
Commit: 264b6623ceec02e372089d73908a3951748516cd
Author: Lasse Karkkainen <tro...@tr...>
Date: Wed Jan 13 16:12:40 2010 +0200
Improved message for hiscore key
---
game/screen_songs.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/screen_songs.cc b/game/screen_songs.cc
index fc140c7..d495486 100644
--- a/game/screen_songs.cc
+++ b/game/screen_songs.cc
@@ -193,7 +193,7 @@ void ScreenSongs::draw() {
// Format the song information text
oss_song << song.title << '\n' << song.artist;
if(m_database.hasHiscore(song))
- oss_hiscore << _("(hiscore available, push \"End\" key to see them)");
+ oss_hiscore << _("(press END to view hiscores)");
oss_order << _("filter: ") << (m_search.text.empty() ? _("none") : m_search.text) << '\n';
oss_order << m_songs.sortDesc() << '\n';
oss_order << "(" << m_songs.currentId() + 1 << "/" << m_songs.size() << ")";
|