diff --git a/stepmania/Themes/default/BGAnimations/ScreenProfileLoad overlay.lua b/stepmania/Themes/default/BGAnimations/ScreenProfileLoad overlay.lua index aafd2268f7..c6af8c2fd0 100755 --- a/stepmania/Themes/default/BGAnimations/ScreenProfileLoad overlay.lua +++ b/stepmania/Themes/default/BGAnimations/ScreenProfileLoad overlay.lua @@ -1,8 +1,6 @@ return Def.ActorFrame { - BeginCommand=function(self) - self:queuecommand( "Load" ) - end; + BeginCommand=cmd(queuecommand,"Load"); LoadCommand=function() - SCREENMAN:GetTopScreen():Continue() + SCREENMAN:GetTopScreen():Continue(); end; -} +};