This commit is contained in:
Glenn Maynard
2005-10-15 04:40:12 +00:00
parent fa00917f7c
commit 34cf8c6915
-24
View File
@@ -1435,30 +1435,6 @@ LUA_REGISTER_CLASS( SongManager )
#include "LuaFunctions.h"
CString GetCurrentSongDisplayTitle()
{
const Song* pSong = GAMESTATE->m_pCurSong;
if( pSong == NULL )
return CString();
return pSong->GetDisplayFullTitle();
}
CString GetCurrentSongDisplayArtist()
{
const Song* pSong = GAMESTATE->m_pCurSong;
if( pSong == NULL )
return CString();
return pSong->GetDisplayArtist();
}
CString GetCurrentSongCredit()
{
const Song* pSong = GAMESTATE->m_pCurSong;
if( pSong == NULL )
return CString();
return pSong->m_sCredit;
}
CString GetCurrentStepsCredits()
{
const Song* pSong = GAMESTATE->m_pCurSong;