use sections in SORT_BPM

choose sort from list in MusicWheel
This commit is contained in:
Chris Danford
2003-06-16 17:28:58 +00:00
parent 708ab35de9
commit 32fd0062a9
18 changed files with 276 additions and 220 deletions
+15
View File
@@ -106,3 +106,18 @@ CString CoinModeToString( CoinMode cm )
default: ASSERT(0); return "";
}
}
CString SongSortOrderToString( SongSortOrder so )
{
CString s[NUM_SORT_ORDERS] = {
"PREFERRED",
"GROUP",
"TITLE",
"BPM",
"MOST PLAYED",
"SORT"
"ROULETTE"
};
return s[so];
}