|
From: Yoda-JM <yo...@us...> - 2009-08-17 16:23:12
|
Module: performous
Branch: master
Commit: 120228edbce06a0a18138cfddf6d86a1517174b0
Author: Vincent Le Ligeour <yo...@us...>
Date: Mon Aug 17 18:22:42 2009 +0200
Added language display when ordering by language
---
game/songs.cc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/game/songs.cc b/game/songs.cc
index 7b4126c..8414e44 100644
--- a/game/songs.cc
+++ b/game/songs.cc
@@ -215,6 +215,7 @@ std::string Songs::sortDesc() const {
if (m_order == 3) str += " (" + current().edition + ")";
if (m_order == 4) str += " (" + current().genre + ")";
if (m_order == 5) str += " (" + pathtrim(current().path) + ")";
+ if (m_order == 6) str += " (" + current().language + ")";
}
return str;
}
|