From 4195f10b80c65c26e1ed03d7abcce2f1254080b5 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 14 Oct 2006 07:00:31 +0000 Subject: [PATCH] LoadingScreen is a global. --- stepmania/Themes/default/Scripts/Other.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/Themes/default/Scripts/Other.lua b/stepmania/Themes/default/Scripts/Other.lua index f5e82825e7..14a412cb95 100644 --- a/stepmania/Themes/default/Scripts/Other.lua +++ b/stepmania/Themes/default/Scripts/Other.lua @@ -50,12 +50,12 @@ end -- Get a metric from the currently-loading screen. This is only valid while loading -- an actor, such as from File or InitCommand attributes; not from commands. function ScreenMetric( sName ) - local sClass = P.LoadingScreen; + local sClass = LoadingScreen; return THEME:GetMetric( sClass, sName ) end function ScreenString( sName ) - local sClass = P.LoadingScreen; + local sClass = LoadingScreen; return THEME:GetString( sClass, sName ) end