From 77d43890b6c5cca42c0962de474ed518a3d700c9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 22 Jul 2007 17:55:46 +0000 Subject: [PATCH] cleanup --- .../default/BGAnimations/ScreenProfileLoad overlay.lua | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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; -} +};