fix an error in course modes related to song backgrounds not showing up on ScreenStageInformation

This commit is contained in:
AJ Kelly
2011-08-13 12:46:35 -05:00
parent 3256950d63
commit dbd56c598f
+1 -1
View File
@@ -31,7 +31,7 @@ function Sprite:LoadFromCurrentSongBackground()
local song = GAMESTATE:GetCurrentSong();
if not song then
local trail = GAMESTATE:GetCurrentTrail(GAMESTATE:GetMasterPlayerNumber());
local e = trail:GetEntries()
local e = trail:GetTrailEntries()
if #e > 0 then
song = e[1]:GetSong();
end