From 3a89fafb8f85215c4d3a208349e2f3452d9f9ff9 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Mon, 7 Mar 2011 15:01:33 -0600 Subject: [PATCH] fix errors with subtitle --- .../ScreenEvaluation decorations/default.lua | 12 ++++++------ .../ScreenEvaluation overlay/default.lua | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Themes/default/BGAnimations/ScreenEvaluation decorations/default.lua b/Themes/default/BGAnimations/ScreenEvaluation decorations/default.lua index 571849adc4..83ab0fd632 100644 --- a/Themes/default/BGAnimations/ScreenEvaluation decorations/default.lua +++ b/Themes/default/BGAnimations/ScreenEvaluation decorations/default.lua @@ -176,23 +176,23 @@ t[#t+1] = StandardDecorationFromFileOptional("SongInformation","SongInformation" local SongOrCourse; if GAMESTATE:GetCurrentSong() then SongOrCourse = GAMESTATE:GetCurrentSong(); - + c.TextTitle:settext( SongOrCourse:GetDisplayMainTitle() or nil ); c.TextSubtitle:settext( SongOrCourse:GetDisplaySubTitle() or nil ); c.TextArtist:settext( SongOrCourse:GetDisplayArtist() or nil ); - + if SongOrCourse:GetDisplaySubTitle() == "" then c.TextTitle:visible(true); c.TextTitle:y(-16.5/2); - c.Subtitle:visible(false); - c.Subtitle:y(0); + c.TextSubtitle:visible(false); + c.TextSubtitle:y(0); c.TextArtist:visible(true); c.TextArtist:y(18/2); else c.TextTitle:visible(true); c.TextTitle:y(-16.5); - c.Subtitle:visible(true); - c.Subtitle:y(0); + c.TextSubtitle:visible(true); + c.TextSubtitle:y(0); c.TextArtist:visible(true); c.TextArtist:y(18); end diff --git a/Themes/default/BGAnimations/ScreenEvaluation overlay/default.lua b/Themes/default/BGAnimations/ScreenEvaluation overlay/default.lua index f854b172bb..e9267db809 100644 --- a/Themes/default/BGAnimations/ScreenEvaluation overlay/default.lua +++ b/Themes/default/BGAnimations/ScreenEvaluation overlay/default.lua @@ -2,8 +2,8 @@ local vStats = STATSMAN:GetCurStageStats(); local function CreateStats( pnPlayer ) -- Actor Templates - local aLabel = LoadFont("Common Normal") .. { Text="..."; InitCommand=cmd(zoom,0.5;shadowlength,1;horizalign,left); }; - local aText = LoadFont("Common Normal") .. { Text="..."; InitCommand=cmd(zoom,0.5;shadowlength,1;horizalign,left); }; + local aLabel = LoadFont("Common Normal") .. { InitCommand=cmd(zoom,0.5;shadowlength,1;horizalign,left); }; + local aText = LoadFont("Common Normal") .. { InitCommand=cmd(zoom,0.5;shadowlength,1;horizalign,left); }; -- DA STATS, JIM!! local pnStageStats = vStats:GetPlayerStageStats( pnPlayer ); -- Organized Stats.