|
From: Markus R. <god...@us...> - 2009-07-29 15:35:40
|
Module: performous Branch: master Commit: 90eb5ea342e01b94904dcf8038590ef2d8ec4132 Author: Markus Raab <un...@ma...> Date: Sat Jul 25 12:37:03 2009 +0200 sort order should be correct now --- game/screen_sing.cc | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/game/screen_sing.cc b/game/screen_sing.cc index 10f6e5e..5614597 100644 --- a/game/screen_sing.cc +++ b/game/screen_sing.cc @@ -252,6 +252,7 @@ ScoreWindow::ScoreWindow(Engine& e, Players & players): ++p; } m_players.scores.sort(); + m_players.scores.reverse(); // top should be first // topScore is also in m_players.scores.front() if (m_players.cur.empty()) m_rank = "No singer!"; |