Missed one.
This commit is contained in:
+4
-4
@@ -230,17 +230,17 @@ public:
|
|||||||
static int GetArtists( T* p, lua_State *L )
|
static int GetArtists( T* p, lua_State *L )
|
||||||
{
|
{
|
||||||
vector<RString> asArtists, asAltArtists;
|
vector<RString> asArtists, asAltArtists;
|
||||||
FOREACH_CONST( TrailEntry, p->m_vEntries, e )
|
for (TrailEntry const &e : p->m_vEntries)
|
||||||
{
|
{
|
||||||
if( e->bSecret )
|
if( e.bSecret )
|
||||||
{
|
{
|
||||||
asArtists.push_back( "???" );
|
asArtists.push_back( "???" );
|
||||||
asAltArtists.push_back( "???" );
|
asAltArtists.push_back( "???" );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
asArtists.push_back( e->pSong->GetDisplayArtist() );
|
asArtists.push_back( e.pSong->GetDisplayArtist() );
|
||||||
asAltArtists.push_back( e->pSong->GetTranslitArtist() );
|
asAltArtists.push_back( e.pSong->GetTranslitArtist() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user