From dbd56c598f0ab01b13aab4efcf63b639fc729c13 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sat, 13 Aug 2011 12:46:35 -0500 Subject: [PATCH] fix an error in course modes related to song backgrounds not showing up on ScreenStageInformation --- Themes/_fallback/Scripts/02 Sprite.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Themes/_fallback/Scripts/02 Sprite.lua b/Themes/_fallback/Scripts/02 Sprite.lua index 8ed0e01862..3c340f4795 100644 --- a/Themes/_fallback/Scripts/02 Sprite.lua +++ b/Themes/_fallback/Scripts/02 Sprite.lua @@ -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